correctly hide helpButton in wizard

the property is "listenToGlobalEvent" not "listenGlobalEvent"

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2016-11-02 12:50:40 +01:00 committed by Dietmar Maurer
parent 013cc4d6c2
commit 6fb47ebac9

View File

@ -30,7 +30,7 @@ Ext.define('PVE.button.Help', {
},
onPveHideHelp: function() {
var me = this.getView();
if (me.listenGlobalEvent === true) {
if (me.listenToGlobalEvent === true) {
me.hide();
}
}