summaryrefslogtreecommitdiff
path: root/gui.js
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2013-03-19 12:39:37 +0100
committerjmoenig <jens@moenig.org>2013-03-19 12:39:37 +0100
commite897915bc79a6fc9fe17fb12e29b992d359913de (patch)
treeb9efb587a41e0c397dc595201c9b2b0db6c06740 /gui.js
parenta67b2e238164a60988e9bb89d644b3923b0f696b (diff)
downloadsnap-yow-e897915bc79a6fc9fe17fb12e29b992d359913de.tar.gz
snap-yow-e897915bc79a6fc9fe17fb12e29b992d359913de.zip
GUI: fix for #run: URL switch
Diffstat (limited to 'gui.js')
-rw-r--r--gui.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui.js b/gui.js
index ae26750..8ac59e9 100644
--- a/gui.js
+++ b/gui.js
@@ -232,10 +232,10 @@ IDE_Morph.prototype.openIn = function (world) {
hash = decodeURIComponent(hash);
}
if (hash.substr(0, 8) === '<project>') {
- this.openProjectString(hash);
+ this.rawOpenProjectString(hash);
} else {
-// this.openProjectString(getURL(hash));
- this.droppedText(getURL(hash));
+ this.rawOpenProjectString(getURL(hash));
+// this.droppedText(getURL(hash));
}
this.toggleAppMode(true);
this.runScripts();