summaryrefslogtreecommitdiff
path: root/javascript/libs
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/libs')
-rwxr-xr-xjavascript/libs/mygosu/actions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript/libs/mygosu/actions.js b/javascript/libs/mygosu/actions.js
index 9b950ba..5cc64b5 100755
--- a/javascript/libs/mygosu/actions.js
+++ b/javascript/libs/mygosu/actions.js
@@ -28,7 +28,7 @@ if (document.all && !/opera/i.test(navigator.userAgent)) {
// remove node
$("tree-remove").onclick = treeRemove;
-function treeRemove() { if (tree.mayRemove()) { if (confirm("Delete current node ?")) { tree.remove(); treePluginExportBitweaver(); } } }
+function treeRemove() { if (tree.mayRemove()) { if (confirm("Delete highlighted item?")) { tree.remove(); treePluginExportBitweaver(); } } }
// export string
function treePluginExportBitweaver() { $('structure_string').value = tree.exportToPhp(); }