don't update progress bar in ie < 10

This commit is contained in:
Jörn Friedrich Dreyer 2013-03-13 17:38:56 +01:00
parent c1a944a655
commit 831b7ca803
1 changed files with 3 additions and 1 deletions

View File

@ -381,9 +381,10 @@ $(document).ready(function() {
* @param data
*/
stop: function(e, data) {
if(data.dataType != 'iframe ') {
if(data.dataType !== 'iframe') {
$('#upload input.stop').hide();
}
//IE < 10 does not fire the necessary events for the progress bar.
if($.browser.msie && parseInt($.browser.version) < 10) {
return;
@ -558,6 +559,7 @@ $(document).ready(function() {
var eventSource=new OC.EventSource(OC.filePath('files','ajax','newfile.php'),{dir:$('#dir').val(),source:name,filename:localName});
eventSource.listen('progress',function(progress){
//IE < 10 does not fire the necessary events for the progress bar.
if($.browser.msie && parseInt($.browser.version) < 10) {
} else {
$('#uploadprogressbar').progressbar('value',progress);