diff options
author | Valerio Virgillito | 2012-06-04 10:20:57 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-06-04 10:20:57 -0700 |
commit | c1ec69879028220b0c3f11ad6e24035bf527802c (patch) | |
tree | 043bfe4ec9e08f4f598a4845ae5fbcddacc7c8fb /js/panels/css-panel/style-sheets-view.reel | |
parent | 3abba04025dbc0daadb08184833a2558c442b8e1 (diff) | |
parent | 266460e52831c5b3a3473be420756fd88bb8aced (diff) | |
download | ninja-c1ec69879028220b0c3f11ad6e24035bf527802c.tar.gz |
Merge pull request #264 from mencio/document-bindings-fix
Document bindings fix - Changing the documents architecture to use bindings instead of events
Diffstat (limited to 'js/panels/css-panel/style-sheets-view.reel')
-rw-r--r-- | js/panels/css-panel/style-sheets-view.reel/style-sheets-view.js | 8 |
1 files changed, 4 insertions, 4 deletions
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 5081a124..9e3b4a49 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 | |||
@@ -63,10 +63,10 @@ exports.StyleSheetsView = Montage.create(Component, { | |||
63 | if(this.styleSheetList) { | 63 | if(this.styleSheetList) { |
64 | sheetComponent = this.styleSheetList.childComponents[this.styleSheets.indexOf(sheet)]; | 64 | sheetComponent = this.styleSheetList.childComponents[this.styleSheets.indexOf(sheet)]; |
65 | if(sheetComponent) { | 65 | if(sheetComponent) { |
66 | sheetComponent.default = true; | 66 | sheetComponent['default'] = true; |
67 | if(this._defaultStyleSheet) { | 67 | if(this._defaultStyleSheet) { |
68 | oldDefaultSheet = this.styleSheetList.childComponents[this.styleSheets.indexOf(this._defaultStyleSheet)]; | 68 | oldDefaultSheet = this.styleSheetList.childComponents[this.styleSheets.indexOf(this._defaultStyleSheet)]; |
69 | oldDefaultSheet.default = false; | 69 | oldDefaultSheet['default'] = false; |
70 | } | 70 | } |
71 | } | 71 | } |
72 | } | 72 | } |
@@ -115,12 +115,12 @@ exports.StyleSheetsView = Montage.create(Component, { | |||
115 | 115 | ||
116 | handleStyleSheetsReady : { | 116 | handleStyleSheetsReady : { |
117 | value: function(e) { | 117 | value: function(e) { |
118 | this.documentName = this.stylesController.activeDocument.name; | 118 | this.documentName = this.stylesController.currentDocument.name; |
119 | this.styleSheets = this.stylesController.userStyleSheets; | 119 | this.styleSheets = this.stylesController.userStyleSheets; |
120 | 120 | ||
121 | Object.defineBinding(this, 'activeDocument', { | 121 | Object.defineBinding(this, 'activeDocument', { |
122 | 'boundObject': this.stylesController, | 122 | 'boundObject': this.stylesController, |
123 | 'boundObjectPropertyPath': 'activeDocument', | 123 | 'boundObjectPropertyPath': 'currentDocument', |
124 | 'oneway': true | 124 | 'oneway': true |
125 | }); | 125 | }); |
126 | 126 | ||