aboutsummaryrefslogtreecommitdiff
path: root/js/document/models/html.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/document/models/html.js')
-rwxr-xr-xjs/document/models/html.js50
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////////////////////////////////////////////////////////////////////////