remove debug output

remotes/origin/stable45
Arthur Schiwon 2012-11-23 12:18:38 +07:00 committed by Jörn Friedrich Dreyer
parent 15a485cbdb
commit 263da2463a
1 changed files with 0 additions and 3 deletions

@ -46,8 +46,6 @@ OC.EventSource=function(src,data){
if(src.indexOf('?') == -1) {
joinChar = '?';
}
alert(src.indexOf('?'));
alert(joinChar);
this.source=new EventSource(src+joinChar+dataStr);
this.source.onmessage=function(e){
for(var i=0;i<this.typelessListeners.length;i++){
@ -65,7 +63,6 @@ OC.EventSource=function(src,data){
if(src.indexOf('?') == -1) {
joinChar = '?';
}
alert(src.indexOf('?'));
this.iframe.attr('src',src+joinChar+'fallback=true&fallback_id='+OC.EventSource.iframeCount+'&'+dataStr);
$('body').append(this.iframe);
this.useFallBack=true;