feature/RVRNEXT-38-use-font-awesome #51

Merged
bence merged 8 commits from feature/RVRNEXT-38-use-font-awesome into master 2023-05-06 21:52:27 +02:00
Showing only changes of commit 32733668ff - Show all commits

View File

@ -59,11 +59,10 @@ var Account = {
}; };
(function () { (function () {
document.getElementById('authenticateWithGoogleButton').onclick = function () { var authenticateWithGoogleButton = document.getElementById('authenticateWithGoogleButton');
if (authenticateWithGoogleButton) {
authenticateWithGoogleButton.onclick = function () {
Account.openGoogleAuthenticate(); Account.openGoogleAuthenticate();
}; };
}
document.getElementsByTagName('form')[0].onreset = function () {
Account.resetGoogleAuthentication();
};
})(); })();