Skip to content
Snippets Groups Projects
Commit 5761bd77 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #1227 from owncloud/hideuploadprogresscancelinielt10

hide upload progress bar and cancel action in IE < 10
parents a6040d0c 5e16510a
No related branches found
No related tags found
No related merge requests found
......@@ -462,6 +462,10 @@ $(document).ready(function() {
$('#uploadprogressbar').progressbar('value',progress);
},
start: function(e, data) {
//IE < 10 does not fire the necessary events for the progress bar.
if($.browser.msie && parseInt($.browser.version) < 10) {
return;
}
$('#uploadprogressbar').progressbar({value:0});
$('#uploadprogressbar').fadeIn();
if(data.dataType != 'iframe ') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment