You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your great library. But I have one problem.
After OAuth flow or cancel OAuth, my app doesn't accept any operation.
When show_login_toolbar option is true, the toolbar remains on screen after OAuth window has closed.
I think this problem is caused by win.close();
-win.close();+win.hide();
win.hide() is better. oauth-adapter also uses window.hide().
The text was updated successfully, but these errors were encountered:
Interesting. It would be nice if Titanium's docs explained more of the diff between close() and hide(). My guess is that it is the obvious: http://stackoverflow.com/questions/6245803/what-does-window-close-do-to-the-contents-of-said-window/6313554#6313554
The former removes the window and the latter leaves the window but hides it. It's not apparent why hide() would work better than close(). Nonetheless, thanks for the tip--I'll but sure to look into this for 1.0!
Thank you for your great library. But I have one problem.
After OAuth flow or cancel OAuth, my app doesn't accept any operation.
When show_login_toolbar option is true, the toolbar remains on screen after OAuth window has closed.
I think this problem is caused by win.close();
win.hide() is better. oauth-adapter also uses window.hide().
The text was updated successfully, but these errors were encountered: