aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/date-input.reel/date-input.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-02-16 22:08:04 -0800
committerValerio Virgillito2012-02-16 22:08:04 -0800
commit0175cb67e426a27a3ecfb7b81317caa383c8a5a5 (patch)
treeb4fbfcaabaadff508ad5463e8f71fd643995aacb /node_modules/montage/ui/date-input.reel/date-input.js
parentfe71cb9aa1700199c0089166ad54fc56eb760644 (diff)
parent9f0c4efe2ed9a00f2c5d85c9d88a8040fedb5d8f (diff)
downloadninja-0175cb67e426a27a3ecfb7b81317caa383c8a5a5.tar.gz
Merge branch 'refs/heads/master' into components
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});