summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorluckydonald <luckydonald@flutterb.at>2014-08-13 13:39:14 +0200
committerluckydonald <luckydonald@flutterb.at>2014-08-13 13:39:14 +0200
commitefdff4e148a3880fc66f139474ccdb17b7a46188 (patch)
tree24b82ec69f6ac1ab0688eba454d0d7ceec4419af /apps
parentdf72723fb9276ca66584dee72e19092df1655bf5 (diff)
downloadnextcloud-server-efdff4e148a3880fc66f139474ccdb17b7a46188.tar.gz
nextcloud-server-efdff4e148a3880fc66f139474ccdb17b7a46188.zip
fixed browser showing the tipsy tooltip as default tooltip twice.
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/file-upload.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js
index b43175da9a6..cb9196f0593 100644
--- a/apps/files/js/file-upload.js
+++ b/apps/files/js/file-upload.js
@@ -526,7 +526,7 @@ OC.Upload = {
}
$('#uploadprogressbar .label .mobile').text(timeStringMobile);
$('#uploadprogressbar .label .desktop').text(timeStringDesktop);
- $('#uploadprogressbar').attr('title', t('files', '{loadedSize} of {totalSize} ({bitrate})', {loadedSize: humanFileSize(data.loaded), totalSize: humanFileSize(data.total), bitrate: humanFileSize(data.bitrate) + '/s'}));
+ $('#uploadprogressbar').attr('original-title', t('files', '{loadedSize} of {totalSize} ({bitrate})', {loadedSize: humanFileSize(data.loaded), totalSize: humanFileSize(data.total), bitrate: humanFileSize(data.bitrate) + '/s'}));
$('#uploadprogressbar').progressbar('value', progress);
});
fileupload.on('fileuploadstop', function(e, data) {