summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gui.js13
-rwxr-xr-xsnap.html3
2 files changed, 12 insertions, 4 deletions
diff --git a/gui.js b/gui.js
index e4fd6cd..ca7bf3b 100644
--- a/gui.js
+++ b/gui.js
@@ -2518,6 +2518,18 @@ IDE_Morph.prototype.projectMenu = function () {
'load the official library of\npowerful blocks'
);
menu.addItem(
+ 'Import geo utilities',
+ function () {
+ myself.droppedText(
+ myself.getURL( // TODO change to 'OrRelative' later
+ 'overpass.xml'
+ ),
+ 'overpass'
+ );
+ },
+ 'load a geo library of powerful\nblocks for Your Own World'
+ );
+ menu.addItem(
'Libraries...',
function () {
// read a list of libraries from an external file,
@@ -2883,7 +2895,6 @@ IDE_Morph.prototype.newProject = function () {
this.createCorral();
this.selectSprite(this.stage.children[0]);
this.fixLayout();
- this.droppedText(this.getURL('overpass.xml')); // YOW hack (TODO)
};
IDE_Morph.prototype.save = function () {
diff --git a/snap.html b/snap.html
index af63bc2..63f94e8 100755
--- a/snap.html
+++ b/snap.html
@@ -191,9 +191,6 @@
ide = new IDE_Morph();
ide.openIn(world);
- setTimeout(function () { // FIXME dirty hack
- ide.droppedText(ide.getURL('overpass.xml'));
- }, 2000);
setInterval(loop, 10);
</script>
</body>