diff options
author | hwc487 | 2012-07-09 16:08:02 -0700 |
---|---|---|
committer | hwc487 | 2012-07-09 16:08:02 -0700 |
commit | 5085d0f67df89a21715308956004164597a6ba79 (patch) | |
tree | 2c896163143a66331205a39b0a3b1b45d51bf12a /js/document/views/code.js | |
parent | 51f1691f792dbda9b740ded8aa0457c9406db156 (diff) | |
parent | 84b3327bd92faafab7954b5eb64c7abe24a3fe13 (diff) | |
download | ninja-5085d0f67df89a21715308956004164597a6ba79.tar.gz |
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into GridFixes
Conflicts:
js/helper-classes/3D/StageLine.js
Diffstat (limited to 'js/document/views/code.js')
-rwxr-xr-x | js/document/views/code.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/js/document/views/code.js b/js/document/views/code.js index 7df7e1c6..6648b353 100755 --- a/js/document/views/code.js +++ b/js/document/views/code.js | |||
@@ -30,15 +30,15 @@ POSSIBILITY OF SUCH DAMAGE. | |||
30 | 30 | ||
31 | //////////////////////////////////////////////////////////////////////// | 31 | //////////////////////////////////////////////////////////////////////// |
32 | // | 32 | // |
33 | var Montage = require("montage/core/core").Montage, | 33 | var Montage = require("montage/core/core").Montage, |
34 | Component = require("montage/ui/component").Component, | 34 | Component = require("montage/ui/component").Component, |
35 | BaseDocumentView = require("js/document/views/base").BaseDocumentView; | 35 | BaseDocumentView = require("js/document/views/base").BaseDocumentView; |
36 | //////////////////////////////////////////////////////////////////////// | 36 | //////////////////////////////////////////////////////////////////////// |
37 | // | 37 | // |
38 | exports.CodeDocumentView = Montage.create(BaseDocumentView, { | 38 | exports.CodeDocumentView = Montage.create(BaseDocumentView, { |
39 | //////////////////////////////////////////////////////////////////// | 39 | //////////////////////////////////////////////////////////////////// |
40 | // | 40 | // |
41 | hasTemplate: { | 41 | hasTemplate: { |
42 | value: false | 42 | value: false |
43 | }, | 43 | }, |
44 | //////////////////////////////////////////////////////////////////// | 44 | //////////////////////////////////////////////////////////////////// |
@@ -103,7 +103,7 @@ exports.CodeDocumentView = Montage.create(BaseDocumentView, { | |||
103 | //Creates a new instance of a code editor | 103 | //Creates a new instance of a code editor |
104 | initializeTextView: { | 104 | initializeTextView: { |
105 | value: function(file, textDocument) { | 105 | value: function(file, textDocument) { |
106 | // | 106 | // |
107 | var type; | 107 | var type; |
108 | // | 108 | // |
109 | switch(file.extension) { | 109 | switch(file.extension) { |
@@ -146,7 +146,7 @@ exports.CodeDocumentView = Montage.create(BaseDocumentView, { | |||
146 | // | 146 | // |
147 | show: { | 147 | show: { |
148 | value: function (callback) { | 148 | value: function (callback) { |
149 | // | 149 | // |
150 | this.textViewContainer.style.display = "block"; | 150 | this.textViewContainer.style.display = "block"; |
151 | // | 151 | // |
152 | if (callback) callback(); | 152 | if (callback) callback(); |
@@ -156,7 +156,7 @@ exports.CodeDocumentView = Montage.create(BaseDocumentView, { | |||
156 | // | 156 | // |
157 | hide: { | 157 | hide: { |
158 | value: function (callback) { | 158 | value: function (callback) { |
159 | // | 159 | // |
160 | this.textViewContainer.style.display = "none"; | 160 | this.textViewContainer.style.display = "none"; |
161 | // | 161 | // |
162 | if (callback) callback(); | 162 | if (callback) callback(); |