Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dave Griffiths
mongoose-2000
Commits
776ae2e4
Commit
776ae2e4
authored
Nov 27, 2013
by
Dave Griffiths
Browse files
datefield ui fix
parent
c8892eff
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
android/AndroidManifest.xml
android/AndroidManifest.xml
+1
-1
android/assets/starwisp.scm
android/assets/starwisp.scm
+2
-2
No files found.
android/AndroidManifest.xml
View file @
776ae2e4
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"foam.mongoose"
android:versionCode=
"
5
"
android:versionCode=
"
6
"
android:versionName=
"1.0"
>
<application
android:label=
"@string/app_name"
android:icon=
"@drawable/logo"
...
...
android/assets/starwisp.scm
View file @
776ae2e4
...
...
@@ -1493,7 +1493,7 @@
(
list
(
date-picker-dialog
"new-individual-date"
(
lambda
(
day
month
year
)
(
let
((
datestring
(
date->string
(
list
day
(
+
month
1
)
year
))))
(
let
((
datestring
(
date->string
(
list
year
(
+
month
1
)
day
))))
(
entity-add-value!
"dob"
"varchar"
datestring
)
(
list
(
update-widget
...
...
@@ -1552,7 +1552,7 @@
(
list
(
date-picker-dialog
"update-individual-date"
(
lambda
(
day
month
year
)
(
let
((
datestring
(
date->string
(
list
day
(
+
month
1
)
year
))))
(
let
((
datestring
(
date->string
(
list
year
(
+
month
1
)
day
))))
(
entity-add-value!
"dob"
"varchar"
datestring
)
(
list
(
update-widget
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment