diff options
Diffstat (limited to 'misc/upload.js')
-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 89f7cfb69..9945803f6 100644 --- a/misc/upload.js +++ b/misc/upload.js @@ -39,7 +39,7 @@ jsUpload.prototype.onsubmit = function () { var hide = $(this.hide); // Insert progressbar and stretch to take the same space. this.progress = new progressBar('uploadprogress'); - this.progress.setProgress(-1, 'Uploading file...'); + this.progress.setProgress(-1, 'Uploading file'); this.progress.element.style.width = '28em'; this.progress.element.style.height = hide.offsetHeight +'px'; hide.parentNode.insertBefore(this.progress.element, hide); |