-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Description
Your hide callback checks the show option instead.
// Get show/hide callback functions
var show = cfg.show || function(control) {
control.show();
};
var hide = cfg.show || function(control) {
control.hide();
};
should be:
// Get show/hide callback functions
var show = cfg.show || function(control) {
control.show();
};
var hide = cfg.hide || function(control) {
control.hide();
};
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels