aboutsummaryrefslogtreecommitdiff
path: root/js/panels/css-panel/css-panel.reel/css-panel.js
diff options
context:
space:
mode:
authorEric Guzman2012-05-10 15:11:40 -0700
committerEric Guzman2012-05-10 15:11:40 -0700
commitb52222a0e165825bf507b4f69b33d51c84eb85d4 (patch)
tree29677df29357c9aa373fa54581f215929098742b /js/panels/css-panel/css-panel.reel/css-panel.js
parent39f23ad4868482f395d2e210490a2d73545a9d84 (diff)
downloadninja-b52222a0e165825bf507b4f69b33d51c84eb85d4.tar.gz
CSS Panel - Fix errors from new Montage and remove logs.
Diffstat (limited to 'js/panels/css-panel/css-panel.reel/css-panel.js')
-rw-r--r--js/panels/css-panel/css-panel.reel/css-panel.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/js/panels/css-panel/css-panel.reel/css-panel.js b/js/panels/css-panel/css-panel.reel/css-panel.js
index b6e9613b..4a2062af 100644
--- a/js/panels/css-panel/css-panel.reel/css-panel.js
+++ b/js/panels/css-panel/css-panel.reel/css-panel.js
@@ -8,18 +8,12 @@ var Montage = require("montage/core/core").Montage,
8 Component = require("montage/ui/component").Component; 8 Component = require("montage/ui/component").Component;
9 9
10exports.CSSPanelNew = Montage.create(Component, { 10exports.CSSPanelNew = Montage.create(Component, {
11
12
13 prepareForDraw : { 11 prepareForDraw : {
14 value: function() { 12 value: function() {
15 console.log("css panel : prepare for draw");
16 } 13 }
17 }, 14 },
18 draw : { 15 draw : {
19 value: function() { 16 value: function() {
20 console.log("css panel : draw. height: ", this.height);
21
22
23 } 17 }
24 } 18 }
25}); 19});