diff --git a/plugins/c9.vfs.standalone/www/ide.html b/plugins/c9.vfs.standalone/www/ide.html index a8753678..c5479419 100644 --- a/plugins/c9.vfs.standalone/www/ide.html +++ b/plugins/c9.vfs.standalone/www/ide.html @@ -78,11 +78,6 @@ if (idx == messages.length) idx = messages.length - 1; var msg = messages[idx]; - if (~location.hash.indexOf("create")) { - msg = "Creating Your New Workspace"; - location.hash = location.hash.replace(/&?create/, ""); - } - document.querySelector("#loadingide .cool-message").innerHTML = msg; setTimeout(function(){ diff --git a/plugins/c9.vfs.standalone/www/ide.offline.html b/plugins/c9.vfs.standalone/www/ide.offline.html index 17dac5e0..d63bb9e7 100644 --- a/plugins/c9.vfs.standalone/www/ide.offline.html +++ b/plugins/c9.vfs.standalone/www/ide.offline.html @@ -10,7 +10,7 @@
-
+
Loading offline ide example
@@ -26,25 +26,6 @@ var loadingIde = document.querySelector("#loadingide"); document.body.className = "loading " + loadingIde.className; - var messages = [ - "Loading offline ide example" - ]; - - var mac_keybindings = []; - - var win_keybindings = []; - - var idx = Math.floor(Math.random() * messages.length); - if (idx == messages.length) idx = messages.length - 1; - var msg = messages[idx]; - - if (~location.hash.indexOf("create")) { - msg = "Creating Your New Workspace"; - location.hash = location.hash.replace(/&?create/, ""); - } - - document.querySelector("#loadingide .cool-message").innerHTML = msg; - setTimeout(function(){ var s = document.querySelector("#loadingide .status"); if (s) s.style.display = "block"; @@ -60,31 +41,293 @@ +