aboutsummaryrefslogtreecommitdiff
path: root/js/document
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-03-15 06:28:46 -0700
committerJose Antonio Marquez2012-03-15 06:28:46 -0700
commitd244f628723399422bb7068bda528bcc0e14c53c (patch)
treea270ef244f81c58d5d1ac9ae65ec55dfdfba36fa /js/document
parent7a9e7ff2e113c95aada64cfccbc140fa77599d57 (diff)
parent67748b4fb19cd5fd210ca711c98d992371c4d2d3 (diff)
downloadninja-d244f628723399422bb7068bda528bcc0e14c53c.tar.gz
Merge branch 'refs/heads/FileIO-Integration' into FileIO-Build-Candidate
Diffstat (limited to 'js/document')
-rwxr-xr-xjs/document/html-document.js14
1 files changed, 12 insertions, 2 deletions
diff --git a/js/document/html-document.js b/js/document/html-document.js
index 051490f5..d4db6e2f 100755
--- a/js/document/html-document.js
+++ b/js/document/html-document.js
@@ -207,9 +207,18 @@ exports.HTMLDocument = Montage.create(TextDocument, {
207 }, 207 },
208 set: function(value) { 208 set: function(value) {
209 var elt = this.documentRoot; 209 var elt = this.documentRoot;
210 if (elt) { 210 if (elt)
211 {
211 var nWorlds= value.length; 212 var nWorlds= value.length;
212 for (var i=0; i<nWorlds; i++) { 213 for (var i=0; i<nWorlds; i++)
214 {
215 /*
216 // Use this code to test the runtime version of WebGL
217 var cdm = new CanvasDataManager();
218 cdm.loadGLData(elt, value, null );
219 */
220
221 // /*
213 var importStr = value[i]; 222 var importStr = value[i];
214 var startIndex = importStr.indexOf( "id: " ); 223 var startIndex = importStr.indexOf( "id: " );
215 if (startIndex >= 0) { 224 if (startIndex >= 0) {
@@ -236,6 +245,7 @@ exports.HTMLDocument = Montage.create(TextDocument, {
236 } 245 }
237 } 246 }
238 } 247 }
248 // */
239 } 249 }
240 } 250 }
241 } 251 }