aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/image.reel
diff options
context:
space:
mode:
authorValerio Virgillito2012-05-03 22:53:07 -0700
committerValerio Virgillito2012-05-03 22:53:07 -0700
commit24b483db367291b72170f969de78efcb1a9b95bd (patch)
treea691a7803cefbfa76a6331a50cbeebcd16287d91 /node_modules/montage/ui/image.reel
parentdc93269cfa7c315d22d85c8217e2412749643f28 (diff)
downloadninja-24b483db367291b72170f969de78efcb1a9b95bd.tar.gz
integrating the latest montage version
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/image.reel')
-rwxr-xr-xnode_modules/montage/ui/image.reel/image.js36
1 files changed, 34 insertions, 2 deletions
diff --git a/node_modules/montage/ui/image.reel/image.js b/node_modules/montage/ui/image.reel/image.js
index 5deebbf6..149f650b 100755
--- a/node_modules/montage/ui/image.reel/image.js
+++ b/node_modules/montage/ui/image.reel/image.js
@@ -3,20 +3,52 @@
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/image.reel"
9 @requires montage/ui/component
10 @requires montage/ui/native-control
11*/
6var Montage = require("montage").Montage, 12var Montage = require("montage").Montage,
7 Component = require("ui/component").Component, 13 Component = require("ui/component").Component,
8 NativeControl = require("ui/native-control").NativeControl; 14 NativeControl = require("ui/native-control").NativeControl;
9 15
10/** 16/**
11 * The <img> native control with binding support for the standard attributes 17 * Wraps the a &lt;img> element with binding support for its standard attributes.
18 @class module:"montage/ui/image.reel".Image
19 @extends module:montage/native-control.NativeControl
12 */ 20 */
13var Image = exports.Image = Montage.create(NativeControl, { 21var Image = exports.Image = Montage.create(NativeControl, {
14 22
15}); 23});
16 24
17Image.addAttributes({ 25Image.addAttributes(/** @lends module:"montage/ui/image.reel".Image */{
26
27/**
28 A text description to display in place of the image.
29 @type {string}
30 @default null
31*/
18 alt: null, 32 alt: null,
33
34/**
35 The height of the image in CSS pixels.
36 @type {number}
37 @default null
38*/
19 height: null, 39 height: null,
40
41/**
42 The URL where the image is located.
43 @type {string}
44 @default null
45*/
20 src: null, 46 src: null,
47
48/**
49 The width of the image in CSS pixels.
50 @type {number}
51 @default null
52*/
21 width: null 53 width: null
22}); 54});