diff options
author | Jon Reid | 2012-06-12 13:32:02 -0700 |
---|---|---|
committer | Jon Reid | 2012-06-12 13:32:02 -0700 |
commit | 8c55dfcb0a669eef0a3bb406b70868078ef09810 (patch) | |
tree | e4d070fe1e67fea38cc0343eda297572da717efa /js/document/models/html.js | |
parent | 8e98ce012f55576ddb979969a3a1d834301af0c7 (diff) | |
parent | 7887aafbff794e9c5f918c667e73a8386c38cf02 (diff) | |
download | ninja-8c55dfcb0a669eef0a3bb406b70868078ef09810.tar.gz |
Merge remote-tracking branch 'ninja-jduran/TimelineUber' into timeline-local
Diffstat (limited to 'js/document/models/html.js')
-rwxr-xr-x | js/document/models/html.js | 50 |
1 files changed, 17 insertions, 33 deletions
diff --git a/js/document/models/html.js b/js/document/models/html.js index 9aa0d27e..7064c6e3 100755 --- a/js/document/models/html.js +++ b/js/document/models/html.js | |||
@@ -23,6 +23,8 @@ exports.HtmlDocumentModel = Montage.create(BaseDocumentModel, { | |||
23 | value:function() { | 23 | value:function() { |
24 | //Creating instance of the webGL helper for this model | 24 | //Creating instance of the webGL helper for this model |
25 | this.webGlHelper = webGlDocumentHelper.create(); | 25 | this.webGlHelper = webGlDocumentHelper.create(); |
26 | // | ||
27 | this.libs = {montage: false, canvas: false, montageId: null, canvasId: null}; | ||
26 | } | 28 | } |
27 | }, | 29 | }, |
28 | //////////////////////////////////////////////////////////////////// | 30 | //////////////////////////////////////////////////////////////////// |
@@ -40,22 +42,32 @@ exports.HtmlDocumentModel = Montage.create(BaseDocumentModel, { | |||
40 | scrollLeft: { | 42 | scrollLeft: { |
41 | value: null | 43 | value: null |
42 | }, | 44 | }, |
43 | 45 | //////////////////////////////////////////////////////////////////// | |
46 | // | ||
44 | scrollTop: { | 47 | scrollTop: { |
45 | value: null | 48 | value: null |
46 | }, | 49 | }, |
47 | 50 | //////////////////////////////////////////////////////////////////// | |
51 | // | ||
48 | userContentLeft: { | 52 | userContentLeft: { |
49 | value: null | 53 | value: null |
50 | }, | 54 | }, |
51 | 55 | //////////////////////////////////////////////////////////////////// | |
56 | // | ||
52 | userContentTop: { | 57 | userContentTop: { |
53 | value: null | 58 | value: null |
54 | }, | 59 | }, |
55 | //////////////////////////////////////////////////////////////////// | 60 | //////////////////////////////////////////////////////////////////// |
56 | // | 61 | //TODO: Convert to bindings |
62 | documentRoot: { | ||
63 | get: function() {return this.views.design._documentRoot;}, | ||
64 | set: function(value) {this.views.design._documentRoot = value;} | ||
65 | }, | ||
66 | //////////////////////////////////////////////////////////////////// | ||
67 | //TODO: Convert to bindings | ||
57 | baseHref: { | 68 | baseHref: { |
58 | value: null | 69 | get: function() {return this.views.design._baseHref;}, |
70 | set: function(value) {this.views.design._baseHref = value;} | ||
59 | }, | 71 | }, |
60 | //////////////////////////////////////////////////////////////////// | 72 | //////////////////////////////////////////////////////////////////// |
61 | // | 73 | // |
@@ -63,34 +75,6 @@ exports.HtmlDocumentModel = Montage.create(BaseDocumentModel, { | |||
63 | value: null | 75 | value: null |
64 | }, | 76 | }, |
65 | //////////////////////////////////////////////////////////////////// | 77 | //////////////////////////////////////////////////////////////////// |
66 | // | ||
67 | userComponents: { | ||
68 | value: {} | ||
69 | }, | ||
70 | //////////////////////////////////////////////////////////////////// | ||
71 | // | ||
72 | documentRoot: { | ||
73 | value: null | ||
74 | }, | ||
75 | //////////////////////////////////////////////////////////////////// | ||
76 | //Add a reference to a component instance to the userComponents hash using the element UUID | ||
77 | setComponentInstance: { | ||
78 | value: function(instance, el) { | ||
79 | this.userComponents[el.uuid] = instance; | ||
80 | } | ||
81 | }, | ||
82 | //////////////////////////////////////////////////////////////////// | ||
83 | //Returns the component instance obj from the element | ||
84 | getComponentFromElement: { | ||
85 | value: function(el) { | ||
86 | if(el) { | ||
87 | if(el.uuid) return this.userComponents[el.uuid]; | ||
88 | } else { | ||
89 | return null; | ||
90 | } | ||
91 | } | ||
92 | } | ||
93 | //////////////////////////////////////////////////////////////////// | ||
94 | //////////////////////////////////////////////////////////////////// | 78 | //////////////////////////////////////////////////////////////////// |
95 | }); | 79 | }); |
96 | //////////////////////////////////////////////////////////////////////// | 80 | //////////////////////////////////////////////////////////////////////// |