Skip to content
Code-Schnipsel Gruppen Projekte
Commit adb5e6f5 erstellt von Michael Danielczok's avatar Michael Danielczok
Dateien durchsuchen

fix: User icon can not be clicked several times.

#54
Übergeordneter 2a1c560e
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
var lg = 'quiqqer/template-cologne';
var lg = 'quiqqer/template-cologne',
USER_BUTTON_CLICKED = false;
window.addEvent('domready', function () {
"use strict";
......@@ -102,6 +103,12 @@ window.addEvent('domready', function () {
}
if (!QUIQQER_USER.id) {
if (USER_BUTTON_CLICKED) {
return;
}
USER_BUTTON_CLICKED = true;
createLoginWindow();
}
}
......@@ -222,7 +229,7 @@ window.addEvent('domready', function () {
SearchBtn = document.getElement('.cologne-header .search-button'),
SearchInput = document.getElement('.template-search input[type="search"]');
if (SHOW_MENU_START_POS && SHOW_MENU_START_POS.toInt() > 0) {
if (SHOW_MENU_START_POS && SHOW_MENU_START_POS.toInt() > 0) {
showMenuFrom = SHOW_MENU_START_POS.toInt();
}
......@@ -336,7 +343,7 @@ window.addEvent('domready', function () {
* @param UserIconControl
* @param QUILocale
*/
function userIconLoadEvent(UserIconControl, QUILocale) {
function userIconLoadEvent (UserIconControl, QUILocale) {
var Menu = UserIconControl.$Menu;
require([
......@@ -372,7 +379,7 @@ function userIconLoadEvent(UserIconControl, QUILocale) {
*
* @param LogoutWindow
*/
function createLogoutWindow(LogoutWindow) {
function createLogoutWindow (LogoutWindow) {
new LogoutWindow({
class : 'cologne-logout-dialog',
title : false,
......@@ -416,7 +423,9 @@ function createLogoutWindow(LogoutWindow) {
/**
* Create and open login popup
*/
function createLoginWindow() {
function createLoginWindow () {
USER_BUTTON_CLICKED = false;
require([
'Locale',
'utils/Controls',
......@@ -460,7 +469,7 @@ function createLoginWindow() {
* In mobile resolution (less than 767px) opens category menu button
* the mobile navigation instead category navigation.
*/
function initMobileMenu() {
function initMobileMenu () {
if (QUI.getWindowSize().x >= 768) {
return;
}
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren