From 1c528b42f9b1c9be9197921586388c3a3bdc5c17 Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Wed, 22 Feb 2012 23:16:23 -0800 Subject: CSS Panel Update - Adding montage objects for css panel --- js/panels/css-panel/css-panel.reel/css-panel.css | 0 js/panels/css-panel/css-panel.reel/css-panel.html | 45 +++++++++++++++++++++++ js/panels/css-panel/css-panel.reel/css-panel.js | 33 +++++++++++++++++ 3 files changed, 78 insertions(+) create mode 100644 js/panels/css-panel/css-panel.reel/css-panel.css create mode 100644 js/panels/css-panel/css-panel.reel/css-panel.html create mode 100644 js/panels/css-panel/css-panel.reel/css-panel.js (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.css b/js/panels/css-panel/css-panel.reel/css-panel.css new file mode 100644 index 00000000..e69de29b diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html new file mode 100644 index 00000000..cc1876c3 --- /dev/null +++ b/js/panels/css-panel/css-panel.reel/css-panel.html @@ -0,0 +1,45 @@ + + + + + + + + + +
+

Style Sheets

+
+

Styles

+
+
+ + \ No newline at end of file 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..a593f1c4 --- /dev/null +++ b/js/panels/css-panel/css-panel.reel/css-panel.js @@ -0,0 +1,33 @@ +/* + This file contains proprietary software owned by Motorola Mobility, Inc.
+ No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.
+ (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. +
*/ + +var Montage = require("montage/core/core").Montage, + Component = require("montage/ui/component").Component; + +exports.CSSPanelNew = Montage.create(Component, { + hasTemplate: { + value: true + }, + condition: { + value: false + }, + templateDidLoad : { + value: function() { + console.log("css panel : template did load"); + //this.condition = true; + } + }, + prepareForDraw : { + value: function() { + console.log("css panel : prepare for draw"); + } + }, + draw : { + value: function() { + console.log("css panel : draw"); + } + } +}); -- cgit v1.2.3 From a5ee11857f923d3e49b44c0a8c480e9d0b026d5b Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Wed, 22 Feb 2012 23:18:12 -0800 Subject: CSS Panel Update --- js/panels/css-panel/css-panel.reel/css-panel.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html index cc1876c3..86bfbbb7 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.html +++ b/js/panels/css-panel/css-panel.reel/css-panel.html @@ -26,9 +26,9 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot }, "stylesViewContainer": { "module" : "js/panels/css-panel/styles-view-container.reel", - "name": "StyleSheetView", + "name": "StylesViewContainer", "properties": { - "element": {"#": "css-styles-view" } + "element": {"#": "styles-view-container" } } } } -- cgit v1.2.3 From 1433f2bdf2e5b8c5c18fed5e9c17fd983ab3606d Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Fri, 2 Mar 2012 10:55:51 -0800 Subject: CSS Panel - Updating components, created toolbar components, and small changes to styles controller --- js/panels/css-panel/css-panel.reel/css-panel.css | 49 +++++++++++++++++++++++ js/panels/css-panel/css-panel.reel/css-panel.html | 7 ++-- js/panels/css-panel/css-panel.reel/css-panel.js | 7 ---- 3 files changed, 53 insertions(+), 10 deletions(-) (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.css b/js/panels/css-panel/css-panel.reel/css-panel.css index e69de29b..6d296a8e 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.css +++ b/js/panels/css-panel/css-panel.reel/css-panel.css @@ -0,0 +1,49 @@ +/* + This file contains proprietary software owned by Motorola Mobility, Inc.
+ No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.
+ (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. +
*/ +.css-panel { + color: #FFF; + display: -webkit-box; + height: 100%; + -webkit-box-orient: vertical; +} +.css-panel > h3 { + background-color: #333; + border-top: 1px solid #3D3D3D; + color: #FFF; + cursor: default; + font-size: 12px; + font-weight: normal; + height: 16px; + margin: 0; + padding: 4px 0 2px 10px; + vertical-align: top; + -webkit-box-flex: 0; + -webkit-user-select: none; +} +.css-panel .style-sheets-view-container { + -webkit-box-flex: 0; + min-height: 41px; +} +.css-panel .styles-view-container { + -webkit-box-flex: 1; + display: -webkit-box; + -webkit-box-orient: vertical; +} +.panel-message { + background-color: rgba(255,255,255, 0.1); + border: 1px dashed rgba(255,255,255, 0.2); + border-radius: 4px; + color: #CCC; + font-size: 11px; + font-weight: normal; + margin: 0 8px; + padding: 5px; + position: relative; + text-shadow: 1px 1px 0px #333; + text-align: center; + top: 8px; + -webkit-box-flex: 0; +} diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html index 86bfbbb7..899c7786 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.html +++ b/js/panels/css-panel/css-panel.reel/css-panel.html @@ -14,7 +14,8 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot "module" : "js/panels/css-panel/css-panel.reel", "name" : "CSSPanel", "properties" : { - "element" : {"#" : "container"} + "element" : {"#" : "container"}, + "controller": {"@": "cssPanelController"} } }, "styleSheetView": { @@ -36,9 +37,9 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot
-

Style Sheets

+

Style Sheets

-

Styles

+

Styles

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 a593f1c4..228e91f6 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.js +++ b/js/panels/css-panel/css-panel.reel/css-panel.js @@ -8,16 +8,9 @@ var Montage = require("montage/core/core").Montage, Component = require("montage/ui/component").Component; exports.CSSPanelNew = Montage.create(Component, { - hasTemplate: { - value: true - }, - condition: { - value: false - }, templateDidLoad : { value: function() { console.log("css panel : template did load"); - //this.condition = true; } }, prepareForDraw : { -- cgit v1.2.3 From 4979ee361a11225f19b991810ca8d8c429a22620 Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Tue, 13 Mar 2012 15:51:17 -0700 Subject: CSS Panel - Add new panel to panel data --- js/panels/css-panel/css-panel.reel/css-panel.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html index 899c7786..61ec82bf 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.html +++ b/js/panels/css-panel/css-panel.reel/css-panel.html @@ -12,7 +12,7 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot { "owner": { "module" : "js/panels/css-panel/css-panel.reel", - "name" : "CSSPanel", + "name" : "CSSPanelNew", "properties" : { "element" : {"#" : "container"}, "controller": {"@": "cssPanelController"} -- cgit v1.2.3 From 97f21076db2603a1437f8bade3d9713433d473fe Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Mon, 23 Apr 2012 11:49:06 -0700 Subject: CSS Panel - Add stub for resizer --- js/panels/css-panel/css-panel.reel/css-panel.css | 10 ++++++ js/panels/css-panel/css-panel.reel/css-panel.html | 6 ++-- js/panels/css-panel/css-panel.reel/css-panel.js | 37 ++++++++++++++++++++--- 3 files changed, 47 insertions(+), 6 deletions(-) (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.css b/js/panels/css-panel/css-panel.reel/css-panel.css index 6d296a8e..e525c08f 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.css +++ b/js/panels/css-panel/css-panel.reel/css-panel.css @@ -47,3 +47,13 @@ top: 8px; -webkit-box-flex: 0; } + +/* ------------------ + Resizer + ------------------ */ + +.sub-panel-resizer { + width: 100%; + height: 3px; + background-color: red; +} diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html index 61ec82bf..4be4d6dd 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.html +++ b/js/panels/css-panel/css-panel.reel/css-panel.html @@ -15,10 +15,11 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot "name" : "CSSPanelNew", "properties" : { "element" : {"#" : "container"}, - "controller": {"@": "cssPanelController"} + "styleSheetsView": {"@": "styleSheetsView"} } }, - "styleSheetView": { + + "styleSheetsView": { "module" : "js/panels/css-panel/style-sheets-view.reel", "name": "StyleSheetsView", "properties": { @@ -39,6 +40,7 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot

Style Sheets

+

Styles

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 228e91f6..21a466d5 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.js +++ b/js/panels/css-panel/css-panel.reel/css-panel.js @@ -8,11 +8,28 @@ var Montage = require("montage/core/core").Montage, Component = require("montage/ui/component").Component; exports.CSSPanelNew = Montage.create(Component, { - templateDidLoad : { - value: function() { - console.log("css panel : template did load"); + _resizedHeight : { + value: null + }, + isResizing : { + value: null + }, + _height: { + value: null + }, + height: { + get: function() { + return this._height; + }, + set: function(val) { + if(this._height !== val) { + this._height = val; + this.needsDraw = true; + } } }, + + prepareForDraw : { value: function() { console.log("css panel : prepare for draw"); @@ -20,7 +37,19 @@ exports.CSSPanelNew = Montage.create(Component, { }, draw : { value: function() { - console.log("css panel : draw"); + console.log("css panel : draw. height: ", this.height); + +// if(this.height) { +// console.log("CSS Panel draw - resizing to", (this.height + this._resizedHeight) + "px"); +// this.styleSheetsView.element.style.height = (this.height + this._resizedHeight) + "px"; +// } + } + }, + didDraw: { + value: function() { + if(!this.isResizing) { + //this.height = this.element.offsetHeight; + } } } }); -- cgit v1.2.3 From 946fae3acf8ca9f384b662e40f406506e8b90ea7 Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Mon, 23 Apr 2012 22:37:34 -0700 Subject: CSSPanel - Resizer --- js/panels/css-panel/css-panel.reel/css-panel.css | 8 ------ js/panels/css-panel/css-panel.reel/css-panel.html | 1 - js/panels/css-panel/css-panel.reel/css-panel.js | 32 +---------------------- 3 files changed, 1 insertion(+), 40 deletions(-) (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.css b/js/panels/css-panel/css-panel.reel/css-panel.css index e525c08f..7bcfbc1a 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.css +++ b/js/panels/css-panel/css-panel.reel/css-panel.css @@ -48,12 +48,4 @@ -webkit-box-flex: 0; } -/* ------------------ - Resizer - ------------------ */ -.sub-panel-resizer { - width: 100%; - height: 3px; - background-color: red; -} diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html index 4be4d6dd..8ee56086 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.html +++ b/js/panels/css-panel/css-panel.reel/css-panel.html @@ -40,7 +40,6 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot

Style Sheets

-

Styles

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 21a466d5..b6e9613b 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.js +++ b/js/panels/css-panel/css-panel.reel/css-panel.js @@ -8,26 +8,6 @@ var Montage = require("montage/core/core").Montage, Component = require("montage/ui/component").Component; exports.CSSPanelNew = Montage.create(Component, { - _resizedHeight : { - value: null - }, - isResizing : { - value: null - }, - _height: { - value: null - }, - height: { - get: function() { - return this._height; - }, - set: function(val) { - if(this._height !== val) { - this._height = val; - this.needsDraw = true; - } - } - }, prepareForDraw : { @@ -39,17 +19,7 @@ exports.CSSPanelNew = Montage.create(Component, { value: function() { console.log("css panel : draw. height: ", this.height); -// if(this.height) { -// console.log("CSS Panel draw - resizing to", (this.height + this._resizedHeight) + "px"); -// this.styleSheetsView.element.style.height = (this.height + this._resizedHeight) + "px"; -// } - } - }, - didDraw: { - value: function() { - if(!this.isResizing) { - //this.height = this.element.offsetHeight; - } + } } }); -- cgit v1.2.3 From 8b9024faa65566a18e4548f198b43f18390e6bc5 Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Thu, 3 May 2012 16:01:47 -0700 Subject: CSS Panel - Add labels for selection and document names --- js/panels/css-panel/css-panel.reel/css-panel.css | 7 +++++++ js/panels/css-panel/css-panel.reel/css-panel.html | 10 ++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.css b/js/panels/css-panel/css-panel.reel/css-panel.css index 7bcfbc1a..7a4191b9 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.css +++ b/js/panels/css-panel/css-panel.reel/css-panel.css @@ -23,6 +23,13 @@ -webkit-box-flex: 0; -webkit-user-select: none; } +.css-panel .selection-name:before, .css-panel .document-name:before { + content:" - " +} +.css-panel .no-styles.selection-name, .css-panel .no-document.document-name { + display: none; +} + .css-panel .style-sheets-view-container { -webkit-box-flex: 0; min-height: 41px; diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html index 8ee56086..f0c538c8 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.html +++ b/js/panels/css-panel/css-panel.reel/css-panel.html @@ -23,14 +23,16 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot "module" : "js/panels/css-panel/style-sheets-view.reel", "name": "StyleSheetsView", "properties": { - "element": {"#": "style-sheet-view" } + "element": {"#": "style-sheet-view" }, + "documentNameLabel": {"#": "document-name" } } }, "stylesViewContainer": { "module" : "js/panels/css-panel/styles-view-container.reel", "name": "StylesViewContainer", "properties": { - "element": {"#": "styles-view-container" } + "element": {"#": "styles-view-container" }, + "selectionNameLabel": {"#": "selection-name" } } } } @@ -38,9 +40,9 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot
-

Style Sheets

+

Style Sheets

-

Styles

+

Styles

-- cgit v1.2.3 From af4dac82d2e76fe90191d6c085740d855bf961f3 Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Tue, 8 May 2012 09:43:57 -0700 Subject: Style sheets - Added default stylesheet selection --- js/panels/css-panel/css-panel.reel/css-panel.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.css b/js/panels/css-panel/css-panel.reel/css-panel.css index 7a4191b9..8ef5ec27 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.css +++ b/js/panels/css-panel/css-panel.reel/css-panel.css @@ -31,12 +31,14 @@ } .css-panel .style-sheets-view-container { - -webkit-box-flex: 0; + display: -webkit-box; min-height: 41px; + -webkit-box-flex: 0; + -webkit-box-orient: vertical; } .css-panel .styles-view-container { - -webkit-box-flex: 1; display: -webkit-box; + -webkit-box-flex: 1; -webkit-box-orient: vertical; } .panel-message { -- cgit v1.2.3 From b52222a0e165825bf507b4f69b33d51c84eb85d4 Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Thu, 10 May 2012 15:11:40 -0700 Subject: CSS Panel - Fix errors from new Montage and remove logs. --- js/panels/css-panel/css-panel.reel/css-panel.js | 6 ------ 1 file changed, 6 deletions(-) (limited to 'js/panels/css-panel/css-panel.reel') 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, Component = require("montage/ui/component").Component; exports.CSSPanelNew = Montage.create(Component, { - - prepareForDraw : { value: function() { - console.log("css panel : prepare for draw"); } }, draw : { value: function() { - console.log("css panel : draw. height: ", this.height); - - } } }); -- cgit v1.2.3 From d4ce8c2fe42fcbfc36cf4b20ef8de67c6471c241 Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Mon, 14 May 2012 23:44:47 -0700 Subject: CSSPanel - Add mutli-selection and adding classes to groups of elements --- js/panels/css-panel/css-panel.reel/css-panel.html | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html index f0c538c8..5bc5c87d 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.html +++ b/js/panels/css-panel/css-panel.reel/css-panel.html @@ -32,7 +32,20 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot "name": "StylesViewContainer", "properties": { "element": {"#": "styles-view-container" }, - "selectionNameLabel": {"#": "selection-name" } + "selectionName": {"@": "selectionName" } + } + }, + "selectionName" : { + "prototype": "montage/ui/dynamic-text.reel", + "properties": { + "element": {"#":"selection-name"} + }, + "bindings": { + "value" : { + "boundObject": {"@": "stylesViewContainer"}, + "boundObjectPropertyPath": "selectionNameLabelText", + "oneway": true + } } } } -- cgit v1.2.3 From d272b035e75a3bac719b3aa4a15a4c6a8e5e2c28 Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Fri, 18 May 2012 00:49:47 -0700 Subject: CSS Panel - Overflow ellipsis for selection name text. --- js/panels/css-panel/css-panel.reel/css-panel.css | 3 +++ 1 file changed, 3 insertions(+) (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.css b/js/panels/css-panel/css-panel.reel/css-panel.css index 8ef5ec27..8d8c8ff5 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.css +++ b/js/panels/css-panel/css-panel.reel/css-panel.css @@ -18,8 +18,11 @@ font-weight: normal; height: 16px; margin: 0; + overflow: hidden; padding: 4px 0 2px 10px; + text-overflow: ellipsis; vertical-align: top; + white-space: nowrap; -webkit-box-flex: 0; -webkit-user-select: none; } -- cgit v1.2.3 From 197a7646e472fcea616764685c8d03c6063e66f5 Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Fri, 18 May 2012 14:05:06 -0700 Subject: CSS Panel - Add support for deleting style sheets --- js/panels/css-panel/css-panel.reel/css-panel.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html index 5bc5c87d..54bb1fae 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.html +++ b/js/panels/css-panel/css-panel.reel/css-panel.html @@ -15,7 +15,8 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot "name" : "CSSPanelNew", "properties" : { "element" : {"#" : "container"}, - "styleSheetsView": {"@": "styleSheetsView"} + "styleSheetsView": {"@": "styleSheetsView"}, + "stylesViewContainer": {"@": "stylesViewContainer"} } }, -- cgit v1.2.3 From 1c3da2901f454ad2c18e20216bb2517740a1c080 Mon Sep 17 00:00:00 2001 From: Eric Guzman Date: Tue, 22 May 2012 14:28:00 -0700 Subject: CSS Panel - Update components to use new serialization format --- js/panels/css-panel/css-panel.reel/css-panel.html | 21 +++++++-------------- js/panels/css-panel/css-panel.reel/css-panel.js | 2 +- 2 files changed, 8 insertions(+), 15 deletions(-) (limited to 'js/panels/css-panel/css-panel.reel') diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html index 54bb1fae..42dca8a2 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.html +++ b/js/panels/css-panel/css-panel.reel/css-panel.html @@ -11,8 +11,7 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot -
+

Style Sheets

-
+

Styles

-
+
\ No newline at end of file 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 4a2062af..a117787e 100644 --- a/js/panels/css-panel/css-panel.reel/css-panel.js +++ b/js/panels/css-panel/css-panel.reel/css-panel.js @@ -7,7 +7,7 @@ var Montage = require("montage/core/core").Montage, Component = require("montage/ui/component").Component; -exports.CSSPanelNew = Montage.create(Component, { +exports.CssPanel = Montage.create(Component, { prepareForDraw : { value: function() { } -- cgit v1.2.3