aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/date-input.reel/date-input.js
blob: 0d8ff613929a5061dc3071150379a4fd2e7fa1c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* <copyright>
 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
 (c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
 </copyright> */
var Montage = require("montage").Montage,
    Component = require("ui/component").Component,
    TextInput = require("ui/text-input").TextInput;
/**
 * The Component wrapper for input type="date"
 */
var DateInput = exports.DateInput = Montage.create(TextInput, {
});

DateInput.addAttributes({
    max: null,
    min: null,
    step: null // 'any' or a floating point number
});