aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/image.reel/image.js
diff options
context:
space:
mode:
authorJonathan Duran2012-05-09 09:58:27 -0700
committerJonathan Duran2012-05-09 09:58:27 -0700
commit48a2a800155fd2d608fb7191c0180cd8f625cd44 (patch)
tree899f9cf1b09a01bc073f92ab498236aed80b38ec /node_modules/montage/ui/image.reel/image.js
parent2ea8a62835f4c20efff2623306e7205e6f5bf0ba (diff)
parentd220c02e246b30509b28a47fa04916ca2b8122e4 (diff)
downloadninja-48a2a800155fd2d608fb7191c0180cd8f625cd44.tar.gz
Merge branch 'refs/heads/NINJAmaster' into TimelineUber
Conflicts: js/panels/Timeline/TimelineTrack.reel/TimelineTrack.html Signed-off-by: Jonathan Duran <jduran@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/image.reel/image.js')
-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});