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

fixing eventsource.js for IE8

parent 8877087b
Branches
No related tags found
Loading
......@@ -87,8 +87,10 @@ OC.EventSource.prototype={
useFallBack:false,
fallBackCallBack:function(type,data){
if(type){
for(var i=0;i<this.listeners[type].length;i++){
this.listeners[type][i](data);
if (typeof this.listeners['done'] != 'undefined') {
for(var i=0;i<this.listeners[type].length;i++){
this.listeners[type][i](data);
}
}
}else{
for(var i=0;i<this.typelessListeners.length;i++){
......@@ -117,6 +119,8 @@ OC.EventSource.prototype={
}
},
close:function(){
this.source.close();
if (typeof this.source !='undefined') {
this.source.close();
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment