diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-04-28 23:25:58 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-04-28 23:25:58 +0200 |
commit | 6cf6103ed2d8fcb70d5340be583622f32ff08913 (patch) | |
tree | 05369abd34ea4d7811ebb0c8343aff754f19f664 /apps/files | |
parent | 51a1f41225ac3a0565d33a50becb2f53993927f0 (diff) | |
download | nextcloud-server-6cf6103ed2d8fcb70d5340be583622f32ff08913.tar.gz nextcloud-server-6cf6103ed2d8fcb70d5340be583622f32ff08913.zip |
Move onclick handler
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/files.js | 5 | ||||
-rw-r--r-- | apps/files/templates/index.php | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index a2d17fae7d2..4010c66593f 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -115,6 +115,11 @@ $(document).ready(function() { return false; }); + // Trigger cancelling of file upload + $('#uploadprogresswrapper stop').on('click', function() { + Files.cancelUploads(); + }); + // Show trash bin $('#trash a').live('click', function() { window.location=OC.filePath('files_trashbin', '', 'index.php'); diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 69fcb94e681..66866ee8b43 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -46,7 +46,6 @@ <div id="uploadprogressbar"></div> <input type="button" class="stop" style="display:none" value="<?php p($l->t('Cancel upload'));?>" - onclick="javascript:Files.cancelUploads();" /> </div> </div> |