aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/number-input.reel/number-input.js
diff options
context:
space:
mode:
authorArmen Kesablyan2012-05-08 16:43:43 -0700
committerArmen Kesablyan2012-05-08 16:43:43 -0700
commitdc075ffcc6dd03c090d90fad999eee9b924d56ee (patch)
tree867f8bdd588c8f9076979233ca46a688ff70523e /node_modules/montage/ui/number-input.reel/number-input.js
parent5d7e470351fd150d5e70a97332fa2f2553797499 (diff)
parent4d949f141247215b5f2a6ec0cfc7d2d31cf2bb1f (diff)
downloadninja-dc075ffcc6dd03c090d90fad999eee9b924d56ee.tar.gz
Merge branch 'refs/heads/dom-architecture' into binding
Conflicts: js/components/layout/tools-properties.reel/tools-properties.html Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/number-input.reel/number-input.js')
-rw-r--r--node_modules/montage/ui/number-input.reel/number-input.js32
1 files changed, 30 insertions, 2 deletions
diff --git a/node_modules/montage/ui/number-input.reel/number-input.js b/node_modules/montage/ui/number-input.reel/number-input.js
index dfd7235f..010c0b75 100644
--- a/node_modules/montage/ui/number-input.reel/number-input.js
+++ b/node_modules/montage/ui/number-input.reel/number-input.js
@@ -3,18 +3,46 @@
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> 3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. 4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */ 5 </copyright> */
6
7/**
8 @module "montage/ui/number-input.reel"
9 @requires montage/ui/component
10 @requires montage/ui/text-input
11*/
12
6var Montage = require("montage").Montage, 13var Montage = require("montage").Montage,
7 Component = require("ui/component").Component, 14 Component = require("ui/component").Component,
8 TextInput = require("ui/text-input").TextInput; 15 TextInput = require("ui/text-input").TextInput;
16
9/** 17/**
10 * The Number input 18 * Wraps the a &lt;input type="date"> element with binding support for the element's standard attributes.
19 @class module:"montage/ui/number-input.reel".NumberInput
20 @extends module:montage/text-input.TextInput
11 */ 21 */
12var NumberInput = exports.NumberInput = Montage.create(TextInput, { 22var NumberInput = exports.NumberInput = Montage.create(TextInput, {
13 23
14}); 24});
15 25
16NumberInput.addAttributes({ 26NumberInput.addAttributes(/** @lends module:"montage/ui/number-input.reel".NumberInput */{
27
28/**
29 The maximum value displayed but the number control.
30 @type {number}
31 @default null
32*/
17 max: {dataType: 'number'}, 33 max: {dataType: 'number'},
34
35/**
36 The minimum value displayed but the number control.
37 @type {number}
38 @default null
39*/
18 min: {dataType: 'number'}, 40 min: {dataType: 'number'},
41
42/**
43 The amount the number changes with each step.
44 @type {number}
45 @default null
46*/
19 step: null // number or 'any' 47 step: null // number or 'any'
20}); 48});