auth method
Changes router location to the Routes.auth page.
Invokes WebUtils.closeWindow, if called from a WebUtils.isPopup.
Implementation
void auth() {
if (WebUtils.isPopup) {
WebUtils.closeWindow();
} else {
go(Routes.auth);
}
}
Changes router location to the Routes.auth page.
Invokes WebUtils.closeWindow, if called from a WebUtils.isPopup.
void auth() {
if (WebUtils.isPopup) {
WebUtils.closeWindow();
} else {
go(Routes.auth);
}
}