Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: samples/beachdemo/beachdemo.js

Issue 155028: Turning async loading off to get the beachdemo to work again in IE. This is ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/beachdemo/beachdemo.js
===================================================================
--- samples/beachdemo/beachdemo.js (revision 19846)
+++ samples/beachdemo/beachdemo.js (working copy)
@@ -1431,7 +1431,7 @@
try {
var url = o3djs.util.getAbsoluteURI('assets/beach-low-poly.o3dtgz');
g_loadInfo = o3djs.scene.loadScene(g_client, g_proxyPack, g_proxyRoot,
- url, callback, {opt_async: true});
+ url, callback, {opt_async: false});
} catch (e) {
showError(e);
}
@@ -1570,7 +1570,7 @@
var url = o3djs.util.getAbsoluteURI('assets/beachdemo.o3dtgz');
g_particleLoader.loadScene(
- g_client, g_scenePack, g_sceneRoot, url, callback, {opt_async: true});
+ g_client, g_scenePack, g_sceneRoot, url, callback, {opt_async: false});
g_particleLoader.finish()
g_loader.finish();
} catch (e) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698