amoffat / bootstrap-application-wizard

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The config : showClose not working

ramanathanMuthuraman opened this issue · comments

Eventhough the showClose: false is given, the close button is not hidden.

Solution: File bootstrap-wizard.js, line : 705 app

if (this.args.showClose) {
this.closeButton.show();
}
else {
this.closeButton.hide(); // Hide logic missing
}