aboutsummaryrefslogtreecommitdiff
path: root/js/panels/css-panel
diff options
context:
space:
mode:
authorKris Kowal2012-07-06 11:53:10 -0700
committerKris Kowal2012-07-06 15:01:48 -0700
commit04343eda8c2f870b0da55cfdc8003c99fe1cc4de (patch)
tree0a6048889b65bb16ff58822e55bc1346e9eb07bd /js/panels/css-panel
parent648ee61ae84216d0236e0dbc211addc13b2cfa3a (diff)
downloadninja-04343eda8c2f870b0da55cfdc8003c99fe1cc4de.tar.gz
Remove trailing spaces
Diffstat (limited to 'js/panels/css-panel')
-rw-r--r--js/panels/css-panel/css-style.reel/css-style.js2
-rw-r--r--js/panels/css-panel/rule-list-container.reel/rule-list-container.js4
-rw-r--r--js/panels/css-panel/style-sheets-view.reel/style-sheets-view.js8
3 files changed, 7 insertions, 7 deletions
diff --git a/js/panels/css-panel/css-style.reel/css-style.js b/js/panels/css-panel/css-style.reel/css-style.js
index e0b24b58..cc41ca23 100644
--- a/js/panels/css-panel/css-style.reel/css-style.js
+++ b/js/panels/css-panel/css-style.reel/css-style.js
@@ -337,7 +337,7 @@ exports.CssStyle = Montage.create(Component, {
337 } else if (value !== '0') { 337 } else if (value !== '0') {
338 this.units = units; 338 this.units = units;
339 } 339 }
340 340
341 this.valueField.value = value; 341 this.valueField.value = value;
342 342
343 this.delegate.handleValueChange(rule, property, value, this); 343 this.delegate.handleValueChange(rule, property, value, this);
diff --git a/js/panels/css-panel/rule-list-container.reel/rule-list-container.js b/js/panels/css-panel/rule-list-container.reel/rule-list-container.js
index 230af089..031398cb 100644
--- a/js/panels/css-panel/rule-list-container.reel/rule-list-container.js
+++ b/js/panels/css-panel/rule-list-container.reel/rule-list-container.js
@@ -200,9 +200,9 @@ exports.RuleListContainer = Montage.create(Component, {
200 }, this); 200 }, this);
201 this.ruleListsToDraw.length = 0; 201 this.ruleListsToDraw.length = 0;
202 } 202 }
203 203
204 }, 204 },
205 205
206 didDraw: { 206 didDraw: {
207 value: function() { 207 value: function() {
208 if(this.ruleListDrawn === true) { 208 if(this.ruleListDrawn === true) {
diff --git a/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.js b/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.js
index 57f4bda3..2e0d97df 100644
--- a/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.js
+++ b/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.js
@@ -75,7 +75,7 @@ exports.StyleSheetsView = Montage.create(Component, {
75 }, 75 },
76 set: function(label) { 76 set: function(label) {
77 if(label === this._documentName) { return false; } 77 if(label === this._documentName) { return false; }
78 78
79 this._documentName = label; 79 this._documentName = label;
80 this.needsDraw = true; 80 this.needsDraw = true;
81 } 81 }
@@ -147,7 +147,7 @@ exports.StyleSheetsView = Montage.create(Component, {
147 147
148 /// App event handlers 148 /// App event handlers
149 /// -------------------------------- 149 /// --------------------------------
150 150
151 handleStyleSheetsReady : { 151 handleStyleSheetsReady : {
152 value: function(e) { 152 value: function(e) {
153 this.documentName = this.stylesController.currentDocument.name; 153 this.documentName = this.stylesController.currentDocument.name;
@@ -183,7 +183,7 @@ exports.StyleSheetsView = Montage.create(Component, {
183 183
184 /// Draw cycle 184 /// Draw cycle
185 /// -------------------------------- 185 /// --------------------------------
186 186
187 templateDidLoad : { 187 templateDidLoad : {
188 value: function() { 188 value: function() {
189 this.stylesController = this.application.ninja.stylesController; 189 this.stylesController = this.application.ninja.stylesController;
@@ -206,7 +206,7 @@ exports.StyleSheetsView = Montage.create(Component, {
206 if(this.height) { 206 if(this.height) {
207 this.styleSheetList.element.style.height = (this.height + this._resizedHeight) + "px"; 207 this.styleSheetList.element.style.height = (this.height + this._resizedHeight) + "px";
208 } 208 }
209 209
210 if(this.documentName && this.documentNameLabel) { 210 if(this.documentName && this.documentNameLabel) {
211 this.documentNameLabel.innerHTML = this.documentName; 211 this.documentNameLabel.innerHTML = this.documentName;
212 this.documentNameLabel.classList.remove(this.noDocumentLabelClass); 212 this.documentNameLabel.classList.remove(this.noDocumentLabelClass);