diff options
author | Jose Antonio Marquez | 2012-05-23 13:37:15 -0700 |
---|---|---|
committer | Jose Antonio Marquez | 2012-05-23 13:37:15 -0700 |
commit | 16decc5726eafbb25675c61be6df85a378ac1fac (patch) | |
tree | 5590c4a20a5d9297d3e66a1d290db32f028047eb /js/panels/css-panel/css-panel.reel/css-panel.js | |
parent | 27e6e1238ec1adb34aa396074e2559801c7e4314 (diff) | |
parent | 108764dbdaa0c040de9146c2d722b6e53830cd54 (diff) | |
download | ninja-16decc5726eafbb25675c61be6df85a378ac1fac.tar.gz |
Merge branch 'refs/heads/Ninja-DOM-Architecture' into Document
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 | 19 |
1 files changed, 19 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..a117787e --- /dev/null +++ b/js/panels/css-panel/css-panel.reel/css-panel.js | |||
@@ -0,0 +1,19 @@ | |||
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.CssPanel = Montage.create(Component, { | ||
11 | prepareForDraw : { | ||
12 | value: function() { | ||
13 | } | ||
14 | }, | ||
15 | draw : { | ||
16 | value: function() { | ||
17 | } | ||
18 | } | ||
19 | }); | ||