aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/date-input.reel/date-input.js
diff options
context:
space:
mode:
authorEric Guzman2012-02-16 14:20:40 -0800
committerEric Guzman2012-02-16 14:20:40 -0800
commit6960f62a84b946c92a59e5f5dc537a818f9f62b8 (patch)
tree49cbff3fdd8dab11846e5a278406915ec0ec1508 /node_modules/montage/ui/date-input.reel/date-input.js
parent82b1a273219f0ae3d119e156c7acccdbe478f441 (diff)
parent81942bd52f0713c9ff5d479ebd12fce577f45e45 (diff)
downloadninja-6960f62a84b946c92a59e5f5dc537a818f9f62b8.tar.gz
Merge branch 'refs/heads/master' into PresetsPanel
Diffstat (limited to 'node_modules/montage/ui/date-input.reel/date-input.js')
-rw-r--r--node_modules/montage/ui/date-input.reel/date-input.js20
1 files changed, 4 insertions, 16 deletions
diff --git a/node_modules/montage/ui/date-input.reel/date-input.js b/node_modules/montage/ui/date-input.reel/date-input.js
index af163258..0d8ff613 100644
--- a/node_modules/montage/ui/date-input.reel/date-input.js
+++ b/node_modules/montage/ui/date-input.reel/date-input.js
@@ -10,22 +10,10 @@ var Montage = require("montage").Montage,
10 * The Component wrapper for input type="date" 10 * The Component wrapper for input type="date"
11 */ 11 */
12var DateInput = exports.DateInput = Montage.create(TextInput, { 12var DateInput = exports.DateInput = Montage.create(TextInput, {
13 hasTemplate: {value: true}
14}); 13});
15 14
16DateInput.addAttributes({ 15DateInput.addAttributes({
17 autocomplete: null, 16 max: null,
18 disabled: {dataType: 'boolean'}, 17 min: null,
19 list: null, // list of autocomplete options 18 step: null // 'any' or a floating point number
20 max: null, 19}); \ No newline at end of file
21 maxlength: null,
22 min: null,
23 multiple: null,
24 name: null,
25 pattern: null,
26 placeholder: null,
27 readonly: {dataType: 'boolean'},
28 required: {dataType: 'boolean'},
29 size: null,
30 src: null
31});