Add hasOwnProperty check

pull/388/head
Jeroen Akkerman 2 years ago
parent 1c656d5712
commit 565c42e0ff

@ -239,9 +239,11 @@ function createToolbarButton(options, enableActions, enableTooltips, shortcuts,
if (options.attributes) {
for (var attribute in options.attributes) {
if (Object.prototype.hasOwnProperty.call(options.attributes, attribute)) {
el.setAttribute(attribute, options.attributes[attribute]);
}
}
}
if (options.noDisable) {
el.classList.add('no-disable');

Loading…
Cancel
Save