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.js66
1 files changed, 63 insertions, 3 deletions
diff --git a/js/document/models/html.js b/js/document/models/html.js
index ff57454b..a97b4b5a 100755
--- a/js/document/models/html.js
+++ b/js/document/models/html.js
@@ -6,16 +6,76 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot
6 6
7//////////////////////////////////////////////////////////////////////// 7////////////////////////////////////////////////////////////////////////
8// 8//
9var Montage = require("montage/core/core").Montage, 9var Montage = require("montage/core/core").Montage,
10 BaseDocumentModel = require("js/document/models/base").BaseDocumentModel; 10 BaseDocumentModel = require("js/document/models/base").BaseDocumentModel,
11 webGlDocumentHelper = require("js/document/helpers/webgl-helper").webGlDocumentHelper;
11//////////////////////////////////////////////////////////////////////// 12////////////////////////////////////////////////////////////////////////
12// 13//
13exports.HtmlDocumentModel = Montage.create(BaseDocumentModel, { 14exports.HtmlDocumentModel = Montage.create(BaseDocumentModel, {
14 //////////////////////////////////////////////////////////////////// 15 ////////////////////////////////////////////////////////////////////
15 // 16 //
16 hasTemplate: { 17 hasTemplate: {
17 enumerable: false,
18 value: false 18 value: false
19 },
20 ////////////////////////////////////////////////////////////////////
21 //
22 selection: {
23 value: []
24 },
25 ////////////////////////////////////////////////////////////////////
26 //
27 draw3DGrid: {
28 value: false
29 },
30 ////////////////////////////////////////////////////////////////////
31 //
32 scrollLeft: {
33 value: null
34 },
35
36 scrollTop: {
37 value: null
38 },
39
40 userContentLeft: {
41 value: null
42 },
43
44 userContentTop: {
45 value: null
46 },
47 ////////////////////////////////////////////////////////////////////
48 //
49 baseHref: {
50 value: null
51 },
52 ////////////////////////////////////////////////////////////////////
53 //
54 webGlHelper: {
55 value: webGlDocumentHelper
56 },
57 ////////////////////////////////////////////////////////////////////
58 //
59 userComponents: {
60 value: {}
61 },
62 ////////////////////////////////////////////////////////////////////
63 //Add a reference to a component instance to the userComponents hash using the element UUID
64 setComponentInstance: {
65 value: function(instance, el) {
66 this.userComponents[el.uuid] = instance;
67 }
68 },
69 ////////////////////////////////////////////////////////////////////
70 //Returns the component instance obj from the element
71 getComponentFromElement: {
72 value: function(el) {
73 if(el) {
74 if(el.uuid) return this.userComponents[el.uuid];
75 } else {
76 return null;
77 }
78 }
19 } 79 }
20 //////////////////////////////////////////////////////////////////// 80 ////////////////////////////////////////////////////////////////////
21 //////////////////////////////////////////////////////////////////// 81 ////////////////////////////////////////////////////////////////////