aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/native/progress.reel/progress.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/ui/native/progress.reel/progress.js')
-rw-r--r--node_modules/montage/ui/native/progress.reel/progress.js49
1 files changed, 49 insertions, 0 deletions
diff --git a/node_modules/montage/ui/native/progress.reel/progress.js b/node_modules/montage/ui/native/progress.reel/progress.js
new file mode 100644
index 00000000..4cf9e5c3
--- /dev/null
+++ b/node_modules/montage/ui/native/progress.reel/progress.js
@@ -0,0 +1,49 @@
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/progress.reel"
9 @requires montage/ui/commponent
10 @requires montage/ui/native-control
11*/
12
13var Montage = require("montage").Montage,
14 Component = require("ui/component").Component,
15 NativeControl = require("ui/native-control").NativeControl;
16
17/**
18 The Progress component wraps a native <code>&lt;progress></code> element and exposes its standard attributes as bindable properties.
19 @class module:"montage/ui/progress.reel".Progress
20 @extends module:montage/ui/native-control.NativeControl
21
22*/
23var Progress = exports.Progress = Montage.create(NativeControl, {
24
25});
26
27Progress.addAttributes( /** @lends module:"montage/ui/progress.reel".Progress# */{
28
29/**
30 The value of the id attribute of the form with which to associate the component's element.
31 @type string}
32 @default null
33*/
34 form: null,
35
36/**
37 The maximum value displayed but the progress control.
38 @type {number}
39 @default null
40*/
41 max: {dataType: 'number'},
42
43/**
44 The current value displayed but the progress control.
45 @type {number}
46 @default null
47*/
48 value: {dataType: 'number'}
49}); \ No newline at end of file