From 337efc667372326ae2f9984d89a47bb151016774 Mon Sep 17 00:00:00 2001
From: Armen Kesablyan
Date: Mon, 11 Jun 2012 13:25:13 -0700
Subject: Changes Made to Object Listing of iFrame

Signed-off-by: Armen Kesablyan <armen@motorola.com>
---
 js/document/models/base.js | 13 +++++++++++++
 js/document/models/html.js |  3 ++-
 2 files changed, 15 insertions(+), 1 deletion(-)

(limited to 'js/document/models')

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, {
 	libs: {
         value: null
     },
+
+    _mObjects: {
+            value: []
+        },
+
+        mObjects: {
+            get: function() {
+                return this._mObjects;
+            },
+            set: function(value) {
+                this._mObjects = value;
+            }
+        },
     ////////////////////////////////////////////////////////////////////
 	//
 	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, {
 	//
 	webGlHelper: {
         value: null
-    },
+    }
     ////////////////////////////////////////////////////////////////////
 	////////////////////////////////////////////////////////////////////
+
 });
 ////////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////////
\ No newline at end of file
-- 
cgit v1.2.3