summaryrefslogtreecommitdiff
path: root/gui.js
diff options
context:
space:
mode:
authorJens Mönig <jens@moenig.org>2013-04-23 08:06:08 -0700
committerJens Mönig <jens@moenig.org>2013-04-23 08:06:08 -0700
commit43f51863d013f10d49554d59fca4929bb19d7532 (patch)
treee4b899db36fab6be24cd192c41e68129f54b438b /gui.js
parent5beb7abafb7bd76015508908459467ec902085e5 (diff)
parentb27eb901b4b5e002bad97ecd208631b289762753 (diff)
downloadsnap-byow-43f51863d013f10d49554d59fca4929bb19d7532.tar.gz
snap-byow-43f51863d013f10d49554d59fca4929bb19d7532.zip
Merge pull request #61 from queryselector/issue-59
Fixed #59
Diffstat (limited to 'gui.js')
-rw-r--r--gui.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui.js b/gui.js
index 9fe2b02..8e0b5d3 100644
--- a/gui.js
+++ b/gui.js
@@ -1989,7 +1989,7 @@ IDE_Morph.prototype.projectMenu = function () {
menu.addItem(
shiftClicked ?
- 'Export project as plain text ...' : 'Export project...',
+ 'Export project as plain text...' : 'Export project...',
function () {
if (myself.projectName) {
myself.exportProject(myself.projectName, shiftClicked);
@@ -2004,7 +2004,7 @@ IDE_Morph.prototype.projectMenu = function () {
);
menu.addItem(
- 'Export blocks ...',
+ 'Export blocks...',
function () {myself.exportGlobalBlocks(); },
'show global custom block definitions as XML\nin a new browser window'
);