Skip to content

Instantly share code, notes, and snippets.

@nutti
Created February 23, 2015 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nutti/3439c17a1744cc93cc51 to your computer and use it in GitHub Desktop.
Save nutti/3439c17a1744cc93cc51 to your computer and use it in GitHub Desktop.
InAppBrowser Event Listener
self.cb = window.open(url, '_blank', 'location=no,toolbar=no,clearsessioncache=yes');
self.cb.addEventListener('loadstart', function(e) {
var loc = e.url;
if (loc.indexOf(REDIRECT_URL) != -1) {
// 認可完了後の処理
return;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment