aboutsummaryrefslogtreecommitdiff
path: root/node_modules/ninja-components/image3d.reel/image3d.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-02-16 22:45:55 -0800
committerValerio Virgillito2012-02-16 22:45:55 -0800
commite67d1f472dab28b4ff6afc9d9cc06b34756e26b5 (patch)
treef17a01b3ad3ca11fc35e90133fae47fae668378c /node_modules/ninja-components/image3d.reel/image3d.js
parent9f0c4efe2ed9a00f2c5d85c9d88a8040fedb5d8f (diff)
parent90e2b3455a123af8751d63381609b3a5ae304051 (diff)
downloadninja-e67d1f472dab28b4ff6afc9d9cc06b34756e26b5.tar.gz
Merge pull request #51 from mencio/components
Fixing the components not instantianting in the user document
Diffstat (limited to 'node_modules/ninja-components/image3d.reel/image3d.js')
-rw-r--r--node_modules/ninja-components/image3d.reel/image3d.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/node_modules/ninja-components/image3d.reel/image3d.js b/node_modules/ninja-components/image3d.reel/image3d.js
deleted file mode 100644
index d9b7b302..00000000
--- a/node_modules/ninja-components/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