aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/native/input-number.reel/input-number.js
diff options
context:
space:
mode:
authorArmen Kesablyan2012-06-20 15:16:30 -0700
committerArmen Kesablyan2012-06-20 15:16:30 -0700
commit65b989c7759af923fb9456d34bff89f91831ea1e (patch)
treee408be732a3eee71229bfc7dbf7cace998ce18de /node_modules/montage/ui/native/input-number.reel/input-number.js
parent38f571d1fdf02d36c3816637af7b2ca2493809da (diff)
parentfc818d31de267d2b77fda3b3029ad38d48698be8 (diff)
downloadninja-65b989c7759af923fb9456d34bff89f91831ea1e.tar.gz
Merge branch 'refs/heads/master' into binding
Conflicts: node_modules/montage/ui/application.js Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/native/input-number.reel/input-number.js')
-rw-r--r--node_modules/montage/ui/native/input-number.reel/input-number.js48
1 files changed, 48 insertions, 0 deletions
diff --git a/node_modules/montage/ui/native/input-number.reel/input-number.js b/node_modules/montage/ui/native/input-number.reel/input-number.js
new file mode 100644
index 00000000..2fd5a15f
--- /dev/null
+++ b/node_modules/montage/ui/native/input-number.reel/input-number.js
@@ -0,0 +1,48 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<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.
5 </copyright> */
6
7/**
8 @module "montage/ui/input-number.reel"
9 @requires montage/ui/component
10 @requires montage/ui/text-input
11*/
12
13var Montage = require("montage").Montage,
14 Component = require("ui/component").Component,
15 TextInput = require("ui/text-input").TextInput;
16
17/**
18 * Wraps the a &lt;input type="date"> element with binding support for the element's standard attributes.
19 @class module:"montage/ui/input-number.reel".InputNumber
20 @extends module:montage/ui/text-input.TextInput
21 */
22var InputNumber = exports.InputNumber = Montage.create(TextInput, {
23
24});
25
26InputNumber.addAttributes(/** @lends module:"montage/ui/input-number.reel".InputNumber */{
27
28/**
29 The maximum value displayed but the number control.
30 @type {number}
31 @default null
32*/
33 max: {dataType: 'number'},
34
35/**
36 The minimum value displayed but the number control.
37 @type {number}
38 @default null
39*/
40 min: {dataType: 'number'},
41
42/**
43 The amount the number changes with each step.
44 @type {number}
45 @default null
46*/
47 step: null // number or 'any'
48});