aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/date-input.reel/date-input.js
diff options
context:
space:
mode:
authorArmen Kesablyan2012-02-15 14:28:21 -0800
committerArmen Kesablyan2012-02-15 14:28:21 -0800
commit2a5484af59544a9dfdda854d707455f08a24fe69 (patch)
tree31055dd7a5548ab307a094d02be7012c77eeb4b9 /node_modules/montage/ui/date-input.reel/date-input.js
parentbb4da39a73cbd6fbe83f3b7c9ed5ae60fe58dd6b (diff)
downloadninja-2a5484af59544a9dfdda854d707455f08a24fe69.tar.gz
Latest Montage Updates 0.6 Fixes
Signed-off-by: Armen Kesablyan <armen@motorola.com>
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});