aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/image3d.reel/image3d.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/ui/image3d.reel/image3d.js')
-rwxr-xr-xnode_modules/montage/ui/image3d.reel/image3d.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/node_modules/montage/ui/image3d.reel/image3d.js b/node_modules/montage/ui/image3d.reel/image3d.js
deleted file mode 100755
index d9b7b302..00000000
--- a/node_modules/montage/ui/image3d.reel/image3d.js
+++ /dev/null
@@ -1,30 +0,0 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No 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
7var Montage = require("montage").Montage,
8 Component = require("ui/component").Component;
9
10var Image3D = exports.Image3D = Montage.create(Component, {
11
12 _data: {value: null},
13
14 data: {
15 set: function(value) {
16 this._data = value;
17 this.needsDraw = true;
18 }
19 },
20
21 draw: {
22 value: function() {
23 this._element.style.background = "url(" + this._data["src"] + ")";
24 this.left.textContent = this._data["text"];
25 this.right.textContent = this._data["text"];
26 //this.left.style.background = "-webkit-gradient(linear, left top, left bottom, from(rgba(50,50,50,.7)), color-stop(10%, rgba(10,10,10,.5)), to(black)) left top no-repeat, url(" + this._src + ") left top no-repeat";
27 //this.left.style.backgroundSize="10000% 10000%";
28 }
29 }
30}); \ No newline at end of file