diff options
author | Jose Antonio Marquez | 2012-05-01 10:12:40 -0700 |
---|---|---|
committer | Jose Antonio Marquez | 2012-05-01 10:12:40 -0700 |
commit | 7bdcab084d1991361ba8d37a7435efd229648630 (patch) | |
tree | 0670dadce6bf37cc8ad1672f0e4baf21dc4f5ed8 /js/document/views/design.js | |
parent | 7fdeb9feac4d2da9f86646cda4548ea60e5effa9 (diff) | |
download | ninja-7bdcab084d1991361ba8d37a7435efd229648630.tar.gz |
Setting up new architecture for I/O
Diffstat (limited to 'js/document/views/design.js')
-rwxr-xr-x | js/document/views/design.js | 49 |
1 files changed, 48 insertions, 1 deletions
diff --git a/js/document/views/design.js b/js/document/views/design.js index 84871257..ecd2956c 100755 --- a/js/document/views/design.js +++ b/js/document/views/design.js | |||
@@ -7,7 +7,6 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
7 | //////////////////////////////////////////////////////////////////////// | 7 | //////////////////////////////////////////////////////////////////////// |
8 | // | 8 | // |
9 | var Montage = require("montage/core/core").Montage, | 9 | var Montage = require("montage/core/core").Montage, |
10 | Component = require("montage/ui/component").Component, | ||
11 | CodeDocumentView = require("js/document/views/code").CodeDocumentView; | 10 | CodeDocumentView = require("js/document/views/code").CodeDocumentView; |
12 | //////////////////////////////////////////////////////////////////////// | 11 | //////////////////////////////////////////////////////////////////////// |
13 | // | 12 | // |
@@ -17,6 +16,54 @@ exports.DesignDocumentView = Montage.create(CodeDocumentView, { | |||
17 | hasTemplate: { | 16 | hasTemplate: { |
18 | enumerable: false, | 17 | enumerable: false, |
19 | value: false | 18 | value: false |
19 | }, | ||
20 | //////////////////////////////////////////////////////////////////// | ||
21 | // | ||
22 | initiliaze: { | ||
23 | enumerable: false, | ||
24 | value: function () { | ||
25 | // | ||
26 | } | ||
27 | }, | ||
28 | //////////////////////////////////////////////////////////////////// | ||
29 | // | ||
30 | render: { | ||
31 | enumerable: false, | ||
32 | value: function () { | ||
33 | // | ||
34 | } | ||
35 | }, | ||
36 | //////////////////////////////////////////////////////////////////// | ||
37 | // | ||
38 | onTemplateLoad: { | ||
39 | enumerable: false, | ||
40 | value: function () { | ||
41 | // | ||
42 | } | ||
43 | }, | ||
44 | //////////////////////////////////////////////////////////////////// | ||
45 | // | ||
46 | initCss: { | ||
47 | enumerable: false, | ||
48 | value: function () { | ||
49 | // | ||
50 | } | ||
51 | }, | ||
52 | //////////////////////////////////////////////////////////////////// | ||
53 | // | ||
54 | initWebGl: { | ||
55 | enumerable: false, | ||
56 | value: function () { | ||
57 | // | ||
58 | } | ||
59 | }, | ||
60 | //////////////////////////////////////////////////////////////////// | ||
61 | // | ||
62 | initMontage: { | ||
63 | enumerable: false, | ||
64 | value: function () { | ||
65 | // | ||
66 | } | ||
20 | } | 67 | } |
21 | //////////////////////////////////////////////////////////////////// | 68 | //////////////////////////////////////////////////////////////////// |
22 | //////////////////////////////////////////////////////////////////// | 69 | //////////////////////////////////////////////////////////////////// |