diff options
author | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-11 11:33:15 +0000 |
---|---|---|
committer | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-11 11:33:15 +0000 |
commit | 70aae83c8ee2a44b2eb880214af50f8052e12bf7 (patch) | |
tree | 7ed206ab5d302d9699cd11e28b6a3bbbd0ac5fdb /misc | |
parent | 4b87417062261795eb4a2ce5909c2dacc8ce4704 (diff) | |
download | brdo-70aae83c8ee2a44b2eb880214af50f8052e12bf7.tar.gz brdo-70aae83c8ee2a44b2eb880214af50f8052e12bf7.tar.bz2 |
#58166, fixes for typos, patch by Uwe Herrmann
Diffstat (limited to 'misc')
-rw-r--r-- | misc/upload.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/upload.js b/misc/upload.js index 47189d591..b14b2a245 100644 --- a/misc/upload.js +++ b/misc/upload.js @@ -14,7 +14,7 @@ function uploadAutoAttach() { for (i = 0; input = inputs[i]; i++) { if (input && hasClass(input, 'upload')) { var uri = input.value; - // Extract the button ID based on a subtring of the input name: edit[foo][bar] -> foo-bar + // Extract the button ID based on a substring of the input name: edit[foo][bar] -> foo-bar var button = input.name.substr(5, input.name.length - 6).replace('][', '-'); var wrapper = button + '-wrapper'; var hide = button + '-hide'; |