This commit is contained in:
Mike Angstadt 2017-05-17 21:26:07 +00:00 committed by GitHub
commit 69207e782d

View file

@ -108,6 +108,10 @@ function createIcon(options, enableTooltips, shortcuts) {
}
}
if(options.innerHTML) {
el.innerHTML = options.innerHTML;
}
el.tabIndex = -1;
el.className = options.className;
return el;