diff options
Diffstat (limited to 'js/panels/css-panel/styles-view-container.reel/styles-view-container.js')
-rw-r--r-- | js/panels/css-panel/styles-view-container.reel/styles-view-container.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/js/panels/css-panel/styles-view-container.reel/styles-view-container.js b/js/panels/css-panel/styles-view-container.reel/styles-view-container.js new file mode 100644 index 00000000..41e16192 --- /dev/null +++ b/js/panels/css-panel/styles-view-container.reel/styles-view-container.js | |||
@@ -0,0 +1,35 @@ | |||
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.StylesViewContainer = Montage.create(Component, { | ||
11 | noDocumentCondition : { | ||
12 | value: true | ||
13 | }, | ||
14 | contentPanel : { | ||
15 | value: 'rules' | ||
16 | }, | ||
17 | displayedList : { | ||
18 | value: null | ||
19 | }, | ||
20 | deserializedFromTemplate : { | ||
21 | value: function() { | ||
22 | console.log("styles view container - deserialized"); | ||
23 | } | ||
24 | }, | ||
25 | prepareForDraw : { | ||
26 | value: function() { | ||
27 | console.log("styles view container - prepare for draw"); | ||
28 | } | ||
29 | }, | ||
30 | draw : { | ||
31 | value: function() { | ||
32 | console.log("styles view container - draw"); | ||
33 | } | ||
34 | } | ||
35 | }); \ No newline at end of file | ||