diff options
author | Mario <mario@mariovavti.com> | 2020-06-13 12:01:27 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-06-13 12:01:27 +0000 |
commit | a88233a045679f3d7ea4c14eb68e62816fb10ba7 (patch) | |
tree | f9a1b74fe1d9363b5b66e816992a22d75257fc5b /vendor/blueimp/jquery-file-upload/js/jquery.fileupload-ui.js | |
parent | 0259130cf32fee40981bd0eef6fedd9440782061 (diff) | |
download | volse-hubzilla-a88233a045679f3d7ea4c14eb68e62816fb10ba7.tar.gz volse-hubzilla-a88233a045679f3d7ea4c14eb68e62816fb10ba7.tar.bz2 volse-hubzilla-a88233a045679f3d7ea4c14eb68e62816fb10ba7.zip |
composer update jquery-file-upload
Diffstat (limited to 'vendor/blueimp/jquery-file-upload/js/jquery.fileupload-ui.js')
-rw-r--r-- | vendor/blueimp/jquery-file-upload/js/jquery.fileupload-ui.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/blueimp/jquery-file-upload/js/jquery.fileupload-ui.js b/vendor/blueimp/jquery-file-upload/js/jquery.fileupload-ui.js index c42b18cc2..9cc3d3fd0 100644 --- a/vendor/blueimp/jquery-file-upload/js/jquery.fileupload-ui.js +++ b/vendor/blueimp/jquery-file-upload/js/jquery.fileupload-ui.js @@ -626,13 +626,13 @@ this._on(fileUploadButtonBar.find('.start'), { click: function (e) { e.preventDefault(); - filesList.find('.start').click(); + filesList.find('.start').trigger('click'); } }); this._on(fileUploadButtonBar.find('.cancel'), { click: function (e) { e.preventDefault(); - filesList.find('.cancel').click(); + filesList.find('.cancel').trigger('click'); } }); this._on(fileUploadButtonBar.find('.delete'), { @@ -642,7 +642,7 @@ .find('.toggle:checked') .closest('.template-download') .find('.delete') - .click(); + .trigger('click'); fileUploadButtonBar.find('.toggle').prop('checked', false); } }); |