Merge 52cba119f4fb679b88533c6dc03743f8201e897c into e32fe3f91c2d45f27f72a3662133b1c0e1a5bda1

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;