summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-10-12 11:30:15 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-10-12 11:30:15 +0200
commitaedb7a7e702037acb02dc82d94fe651aaa969539 (patch)
treeb39e745aca8a8a5b29bff4c6ea7d9547fbf41eae /apps/files
parent179c0be158a938e720713e38dfd98bcfd43c07f5 (diff)
downloadnextcloud-server-aedb7a7e702037acb02dc82d94fe651aaa969539.tar.gz
nextcloud-server-aedb7a7e702037acb02dc82d94fe651aaa969539.zip
Revert "Debounce cancel upload message"
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/file-upload.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js
index 77b85ecd7da..8bae8567a05 100644
--- a/apps/files/js/file-upload.js
+++ b/apps/files/js/file-upload.js
@@ -75,9 +75,6 @@ OC.Upload = {
this._uploads.push(jqXHR);
}
},
- showUploadCancelMessage: _.debounce(function() {
- OC.Notification.showTemporary(t('files', 'Upload cancelled.'), {timeout: 10});
- }, 500),
/**
* Checks the currently known uploads.
* returns true if any hxr has the state 'pending'
@@ -418,10 +415,10 @@ OC.Upload = {
OC.Upload.log('fail', e, data);
if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) {
if (data.textStatus === 'abort') {
- OC.Upload.showUploadCancelMessage();
+ OC.Notification.show(t('files', 'Upload cancelled.'));
} else {
// HTTP connection problem
- OC.Notification.showTemporary(data.errorThrown, {timeout: 10});
+ OC.Notification.show(data.errorThrown);
if (data.result) {
var result = JSON.parse(data.result);
if (result && result[0] && result[0].data && result[0].data.code === 'targetnotfound') {
@@ -430,6 +427,10 @@ OC.Upload = {
}
}
}
+ //hide notification after 10 sec
+ setTimeout(function() {
+ OC.Notification.hide();
+ }, 10000);
}
OC.Upload.deleteUpload(data);
},