diff options
author | Jose Antonio Marquez | 2012-06-01 13:47:22 -0700 |
---|---|---|
committer | Jose Antonio Marquez | 2012-06-01 13:47:22 -0700 |
commit | 94190d38d659b05a0f071e88134651c2484629f6 (patch) | |
tree | e48d00b1841974a270af99de044b8b81896c5d12 /js/document/models/html.js | |
parent | 9c961c9ef3819f3a8e825f12ab8f5ed8507f9b18 (diff) | |
download | ninja-94190d38d659b05a0f071e88134651c2484629f6.tar.gz |
Fixing webGL helper
Diffstat (limited to 'js/document/models/html.js')
-rwxr-xr-x | js/document/models/html.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/js/document/models/html.js b/js/document/models/html.js index fd42d4de..0fe33990 100755 --- a/js/document/models/html.js +++ b/js/document/models/html.js | |||
@@ -18,6 +18,14 @@ exports.HtmlDocumentModel = Montage.create(BaseDocumentModel, { | |||
18 | value: false | 18 | value: false |
19 | }, | 19 | }, |
20 | //////////////////////////////////////////////////////////////////// | 20 | //////////////////////////////////////////////////////////////////// |
21 | //Called by the document immidiately after the model is created | ||
22 | init: { | ||
23 | value:function() { | ||
24 | //Creating instance of the webGL helper for this model | ||
25 | this.webGlHelper = webGlDocumentHelper.create(); | ||
26 | } | ||
27 | }, | ||
28 | //////////////////////////////////////////////////////////////////// | ||
21 | // | 29 | // |
22 | selection: { | 30 | selection: { |
23 | value: [] | 31 | value: [] |
@@ -57,7 +65,7 @@ exports.HtmlDocumentModel = Montage.create(BaseDocumentModel, { | |||
57 | //////////////////////////////////////////////////////////////////// | 65 | //////////////////////////////////////////////////////////////////// |
58 | // | 66 | // |
59 | webGlHelper: { | 67 | webGlHelper: { |
60 | value: webGlDocumentHelper | 68 | value: null |
61 | }, | 69 | }, |
62 | //////////////////////////////////////////////////////////////////// | 70 | //////////////////////////////////////////////////////////////////// |
63 | // | 71 | // |