diff options
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.js | 25 |
1 files changed, 25 insertions, 0 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 new file mode 100644 index 00000000..b6e9613b --- /dev/null +++ b/js/panels/css-panel/css-panel.reel/css-panel.js | |||
@@ -0,0 +1,25 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<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. | ||
5 | </copyright> */ | ||
6 | |||
7 | var Montage = require("montage/core/core").Montage, | ||
8 | Component = require("montage/ui/component").Component; | ||
9 | |||
10 | exports.CSSPanelNew = Montage.create(Component, { | ||
11 | |||
12 | |||
13 | prepareForDraw : { | ||
14 | value: function() { | ||
15 | console.log("css panel : prepare for draw"); | ||
16 | } | ||
17 | }, | ||
18 | draw : { | ||
19 | value: function() { | ||
20 | console.log("css panel : draw. height: ", this.height); | ||
21 | |||
22 | |||
23 | } | ||
24 | } | ||
25 | }); | ||