Skip to content
Code-Schnipsel Gruppen Projekte
Commit 0926b559 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

Merge branch 'dev'

Übergeordnete ca350d0d 3f9997f8
Keine zugehörigen Branchen gefunden
Keine zugehörigen Tags gefunden
1 Merge Request!63Update 'next-2.x' with latest changes from 'main'
......@@ -364,7 +364,7 @@ define('qui/controls/buttons/Button', needle, function (Control, Utils, NoSelect
return false;
}
return this.getElm().get('data-status') === 1;
return parseInt(this.getElm().get('data-status')) === 1;
},
/**
......@@ -411,7 +411,7 @@ define('qui/controls/buttons/Button', needle, function (Control, Utils, NoSelect
return false;
}
return this.getElm().get('data-status') === -1;
return parseInt(this.getElm().get('data-status')) === -1;
},
/**
......
......@@ -219,6 +219,7 @@ define('qui/controls/windows/Popup', needle, function (QUI,
if (this.getAttribute('closeButton')) {
var Submit = new Element('button', {
html : '<span>' + this.getAttribute('closeButtonText') + '</span>',
name : 'close',
'class': 'qui-button btn-red',
events : {
click: this.cancel
......
0% Lade oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren