diff options
| author | jmoenig <jens@moenig.org> | 2013-03-19 12:39:37 +0100 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2013-03-19 12:39:37 +0100 |
| commit | e897915bc79a6fc9fe17fb12e29b992d359913de (patch) | |
| tree | b9efb587a41e0c397dc595201c9b2b0db6c06740 /gui.js | |
| parent | a67b2e238164a60988e9bb89d644b3923b0f696b (diff) | |
| download | snap-yow-e897915bc79a6fc9fe17fb12e29b992d359913de.tar.gz snap-yow-e897915bc79a6fc9fe17fb12e29b992d359913de.zip | |
GUI: fix for #run: URL switch
Diffstat (limited to 'gui.js')
| -rw-r--r-- | gui.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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(); |
