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
{{ message }}
This repository was archived by the owner on May 29, 2019. It is now read-only.
This seems to be caused by the handleLocationChange function which calls the close() method when a location change occurs. Effectively this close method ends up running after the dialog has been opened in the new location, closing it immediately.
I've resolved this by adding a check to see if the dialog is opened before closing it:
if(self._open) self.close();
but due to the $dialog rewrite issue am not sure whether it's worth submitting a pull request or just raising it as an issue that needs resolving.