diff options
author | Valerio Virgillito | 2012-05-16 23:19:32 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-16 23:19:32 -0700 |
commit | 402a369c7bf164c3c6686be3a33f5e36f25e4130 (patch) | |
tree | 96550b64edc3d6b4fc63c40b957fb1ff5ff3babe /js/document/document-html.js | |
parent | c26de5fa7b909a53b103b72027b5cbe7c3e1c49f (diff) | |
download | ninja-402a369c7bf164c3c6686be3a33f5e36f25e4130.tar.gz |
document controller and stage view code cleanup
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/document/document-html.js')
-rwxr-xr-x | js/document/document-html.js | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/js/document/document-html.js b/js/document/document-html.js index a26b74d5..56d9db02 100755 --- a/js/document/document-html.js +++ b/js/document/document-html.js | |||
@@ -134,14 +134,29 @@ exports.HtmlDocument = Montage.create(Component, { | |||
134 | }, | 134 | }, |
135 | //////////////////////////////////////////////////////////////////// | 135 | //////////////////////////////////////////////////////////////////// |
136 | // | 136 | // |
137 | saveAppState: { | 137 | serializeDocument: { |
138 | value: function () { | 138 | value: function () { |
139 | //TODO: Import functionality | 139 | // There are not needed for now ssince we cannot change them |
140 | //this.gridHorizontalSpacing = this.application.ninja.stage.drawUtils.gridHorizontalSpacing; | ||
141 | //this.gridVerticalSpacing = this.application.ninja.stage.drawUtils.gridVerticalSpacing; | ||
142 | |||
143 | // Serialize the current scroll position | ||
144 | // TODO: Implement | ||
145 | |||
146 | // Serialize the selection | ||
147 | this.model.selection = this.application.ninja.selectedElements.slice(0); | ||
148 | this.draw3DGrid = this.application.ninja.appModel.show3dGrid; | ||
149 | |||
150 | // Serialize the undo | ||
151 | // TODO: Save the montage undo queue | ||
152 | |||
153 | // Pause the videos | ||
154 | this.model.views.design.pauseVideos(); | ||
140 | } | 155 | } |
141 | }, | 156 | }, |
142 | //////////////////////////////////////////////////////////////////// | 157 | //////////////////////////////////////////////////////////////////// |
143 | // | 158 | // |
144 | restoreAppState: { | 159 | deserializeDocument: { |
145 | value: function () { | 160 | value: function () { |
146 | //TODO: Import functionality | 161 | //TODO: Import functionality |
147 | } | 162 | } |