aboutsummaryrefslogtreecommitdiff
path: root/js/document/models
diff options
context:
space:
mode:
authorArmen Kesablyan2012-06-11 13:25:13 -0700
committerArmen Kesablyan2012-06-11 13:25:13 -0700
commit337efc667372326ae2f9984d89a47bb151016774 (patch)
tree717f5a03f398cbab3b61f221458ed11f6b9db228 /js/document/models
parent278769df00ced8620fd73371e38fe2e43f07ca3b (diff)
downloadninja-337efc667372326ae2f9984d89a47bb151016774.tar.gz
Changes Made to Object Listing of iFrame
Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'js/document/models')
-rwxr-xr-xjs/document/models/base.js13
-rwxr-xr-xjs/document/models/html.js3
2 files changed, 15 insertions, 1 deletions
diff --git a/js/document/models/base.js b/js/document/models/base.js
index 5fa06259..9c26bd2a 100755
--- a/js/document/models/base.js
+++ b/js/document/models/base.js
@@ -91,6 +91,19 @@ exports.BaseDocumentModel = Montage.create(Component, {
91 libs: { 91 libs: {
92 value: null 92 value: null
93 }, 93 },
94
95 _mObjects: {
96 value: []
97 },
98
99 mObjects: {
100 get: function() {
101 return this._mObjects;
102 },
103 set: function(value) {
104 this._mObjects = value;
105 }
106 },
94 //////////////////////////////////////////////////////////////////// 107 ////////////////////////////////////////////////////////////////////
95 // 108 //
96 switchViewTo: { 109 switchViewTo: {
diff --git a/js/document/models/html.js b/js/document/models/html.js
index 7064c6e3..f65cd8c3 100755
--- a/js/document/models/html.js
+++ b/js/document/models/html.js
@@ -73,9 +73,10 @@ exports.HtmlDocumentModel = Montage.create(BaseDocumentModel, {
73 // 73 //
74 webGlHelper: { 74 webGlHelper: {
75 value: null 75 value: null
76 }, 76 }
77 //////////////////////////////////////////////////////////////////// 77 ////////////////////////////////////////////////////////////////////
78 //////////////////////////////////////////////////////////////////// 78 ////////////////////////////////////////////////////////////////////
79
79}); 80});
80//////////////////////////////////////////////////////////////////////// 81////////////////////////////////////////////////////////////////////////
81//////////////////////////////////////////////////////////////////////// \ No newline at end of file 82//////////////////////////////////////////////////////////////////////// \ No newline at end of file