aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/date-input.reel/date-input.js
diff options
context:
space:
mode:
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});