(function(jQuery){jQuery.oauthpopup=function(options){options.windowName=options.windowName||"ConnectWithOAuth";options.windowOptions=options.windowOptions||"location=0,status=0,width=800,height=420";options.callback=options.callback||function(){window.location.reload()};var that=this;that._oauthWindow=window.open(options.path,options.windowName,options.windowOptions);that._oauthInterval=window.setInterval(function(){if(!that._oauthWindow||typeof that._oauthWindow=="undefined"){window.clearInterval(that._oauthInterval);window.location.href=options.path.replace("popup=1");return}if(that._oauthWindow.closed){window.clearInterval(that._oauthInterval);options.callback()}},1000)}})(jQuery);
