On the Facebook JS SDK, I'm trying to detect when a user close the Oauth dialog after clicking on login button (accept or deny), so there is the property onlogin :
<div class='fb-login-button" onlogin="function...">FB login</div>
But this method is really bad ! And I don't find any event or indication that I could do this without element property...
The other events related : auth.authResponseChange and auth.statusChange are called at start if user is already connected to the app. And the event auth.prompt is never called (I'm trying to report a bug about this but the bug report page is bugged...).
So is this script :
$('.fb-login-button').each(function() {
var oldLoginFn = this.onlogin || $.noop();
this.onlogin = function () {
//my instructions...
return oldLoginFn.apply(this, arguments);
}
});
is the best I can do to detect the return of Oauth dialog ? there is really no events to detect the login action ?