diff options
author | Kris Kowal | 2012-07-06 11:52:06 -0700 |
---|---|---|
committer | Kris Kowal | 2012-07-06 15:01:48 -0700 |
commit | 648ee61ae84216d0236e0dbc211addc13b2cfa3a (patch) | |
tree | 8f0f55557bd0c47a84e49c1977c950645d284607 /js/document/views | |
parent | aedd14b18695d031f695d27dfbd94df5614495bb (diff) | |
download | ninja-648ee61ae84216d0236e0dbc211addc13b2cfa3a.tar.gz |
Expand tabs
Diffstat (limited to 'js/document/views')
-rwxr-xr-x | js/document/views/base.js | 72 | ||||
-rwxr-xr-x | js/document/views/code.js | 18 | ||||
-rwxr-xr-x | js/document/views/design.js | 638 |
3 files changed, 364 insertions, 364 deletions
diff --git a/js/document/views/base.js b/js/document/views/base.js index e771702d..0f40ab47 100755 --- a/js/document/views/base.js +++ b/js/document/views/base.js | |||
@@ -30,63 +30,63 @@ 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 | UrlParser = require("js/document/helpers/url-parser").UrlParser; | 35 | UrlParser = require("js/document/helpers/url-parser").UrlParser; |
36 | //////////////////////////////////////////////////////////////////////// | 36 | //////////////////////////////////////////////////////////////////////// |
37 | // | 37 | // |
38 | exports.BaseDocumentView = Montage.create(Component, { | 38 | exports.BaseDocumentView = Montage.create(Component, { |
39 | //////////////////////////////////////////////////////////////////// | 39 | //////////////////////////////////////////////////////////////////// |
40 | // | 40 | // |
41 | hasTemplate: { | 41 | hasTemplate: { |
42 | value: false | 42 | value: false |
43 | }, | 43 | }, |
44 | //////////////////////////////////////////////////////////////////// | 44 | //////////////////////////////////////////////////////////////////// |
45 | // | 45 | // |
46 | urlParser: { | 46 | urlParser: { |
47 | value: UrlParser | 47 | value: UrlParser |
48 | }, | 48 | }, |
49 | //////////////////////////////////////////////////////////////////// | 49 | //////////////////////////////////////////////////////////////////// |
50 | // | 50 | // |
51 | _iframe: { | 51 | _iframe: { |
52 | value: null | 52 | value: null |
53 | }, | 53 | }, |
54 | //////////////////////////////////////////////////////////////////// | 54 | //////////////////////////////////////////////////////////////////// |
55 | //TODO: This should be renamed to better illustrate it's a container (iframe for design, div for code view) | 55 | //TODO: This should be renamed to better illustrate it's a container (iframe for design, div for code view) |
56 | iframe: { | 56 | iframe: { |
57 | get: function() {return this._iframe;}, | 57 | get: function() {return this._iframe;}, |
58 | set: function(value) {this._iframe= value;} | 58 | set: function(value) {this._iframe= value;} |
59 | }, | 59 | }, |
60 | //////////////////////////////////////////////////////////////////// | 60 | //////////////////////////////////////////////////////////////////// |
61 | // | 61 | // |
62 | show: { | 62 | show: { |
63 | value: function (callback) { | 63 | value: function (callback) { |
64 | if (this.iframe) { | 64 | if (this.iframe) { |
65 | this.iframe.style.display = 'block'; | 65 | this.iframe.style.display = 'block'; |
66 | this.iframe.style.opacity = 1; | 66 | this.iframe.style.opacity = 1; |
67 | } else { | 67 | } else { |
68 | console.log('Error: View has no iframe to show!'); | 68 | console.log('Error: View has no iframe to show!'); |
69 | } | 69 | } |
70 | // | 70 | // |
71 | if (callback) callback(); | 71 | if (callback) callback(); |
72 | } | 72 | } |
73 | }, | 73 | }, |
74 | //////////////////////////////////////////////////////////////////// | 74 | //////////////////////////////////////////////////////////////////// |
75 | // | 75 | // |
76 | hide: { | 76 | hide: { |
77 | value: function (callback) { | 77 | value: function (callback) { |
78 | if (this.iframe) { | 78 | if (this.iframe) { |
79 | this.iframe.style.display = 'none'; | 79 | this.iframe.style.display = 'none'; |
80 | this.iframe.style.opacity = 0; | 80 | this.iframe.style.opacity = 0; |
81 | } else { | 81 | } else { |
82 | console.log('Error: View has no iframe to hide!'); | 82 | console.log('Error: View has no iframe to hide!'); |
83 | } | 83 | } |
84 | // | 84 | // |
85 | if (callback) callback(); | 85 | if (callback) callback(); |
86 | } | 86 | } |
87 | } | 87 | } |
88 | //////////////////////////////////////////////////////////////////// | 88 | //////////////////////////////////////////////////////////////////// |
89 | //////////////////////////////////////////////////////////////////// | 89 | //////////////////////////////////////////////////////////////////// |
90 | }); | 90 | }); |
91 | //////////////////////////////////////////////////////////////////////// | 91 | //////////////////////////////////////////////////////////////////////// |
92 | //////////////////////////////////////////////////////////////////////// | 92 | //////////////////////////////////////////////////////////////////////// |
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(); |
diff --git a/js/document/views/design.js b/js/document/views/design.js index 44ed2c65..b92f7619 100755 --- a/js/document/views/design.js +++ b/js/document/views/design.js | |||
@@ -30,50 +30,50 @@ 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 | BaseDocumentView = require("js/document/views/base").BaseDocumentView, | 34 | BaseDocumentView = require("js/document/views/base").BaseDocumentView, |
35 | ElementModel = require("js/models/element-model"); | 35 | ElementModel = require("js/models/element-model"); |
36 | //////////////////////////////////////////////////////////////////////// | 36 | //////////////////////////////////////////////////////////////////////// |
37 | // | 37 | // |
38 | exports.DesignDocumentView = Montage.create(BaseDocumentView, { | 38 | exports.DesignDocumentView = Montage.create(BaseDocumentView, { |
39 | //////////////////////////////////////////////////////////////////// | 39 | //////////////////////////////////////////////////////////////////// |
40 | // | 40 | // |
41 | hasTemplate: { | 41 | hasTemplate: { |
42 | value: false | 42 | value: false |
43 | }, | 43 | }, |
44 | //////////////////////////////////////////////////////////////////// | 44 | //////////////////////////////////////////////////////////////////// |
45 | // | 45 | // |
46 | _callback: { | 46 | _callback: { |
47 | value: null | 47 | value: null |
48 | }, | 48 | }, |
49 | //////////////////////////////////////////////////////////////////// | 49 | //////////////////////////////////////////////////////////////////// |
50 | // | 50 | // |
51 | _viewCallback: { | 51 | _viewCallback: { |
52 | value: null | 52 | value: null |
53 | }, | 53 | }, |
54 | //////////////////////////////////////////////////////////////////// | 54 | //////////////////////////////////////////////////////////////////// |
55 | // | 55 | // |
56 | _template: { | 56 | _template: { |
57 | value: null | 57 | value: null |
58 | }, | 58 | }, |
59 | //////////////////////////////////////////////////////////////////// | 59 | //////////////////////////////////////////////////////////////////// |
60 | // | 60 | // |
61 | _bodyFragment: { | 61 | _bodyFragment: { |
62 | value: null | 62 | value: null |
63 | }, | 63 | }, |
64 | //////////////////////////////////////////////////////////////////// | 64 | //////////////////////////////////////////////////////////////////// |
65 | // | 65 | // |
66 | _headFragment: { | 66 | _headFragment: { |
67 | value: null | 67 | value: null |
68 | }, | 68 | }, |
69 | //////////////////////////////////////////////////////////////////// | 69 | //////////////////////////////////////////////////////////////////// |
70 | // | 70 | // |
71 | _observer: { | 71 | _observer: { |
72 | value: {head: null, body: null} | 72 | value: {head: null, body: null} |
73 | }, | 73 | }, |
74 | //////////////////////////////////////////////////////////////////// | 74 |