You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems pretty easy to implement in the escape key code by simply checking the disabled property if (!this['$_' + buttonKey].prop('disabled'))
if (buttonKey)
if (typeof this.buttons[buttonKey] === 'undefined') {
console.warn('Invalid escapeKey, no buttons found with key ' + buttonKey);
} else {
if (!this['$_' + buttonKey].prop('disabled'))
this['$_' + buttonKey].trigger('click');
}
Activity
jjbutera commentedon Nov 8, 2023
This seems pretty easy to implement in the escape key code by simply checking the disabled property
if (!this['$_' + buttonKey].prop('disabled'))