18 lines
543 B
JavaScript
18 lines
543 B
JavaScript
import layoutManager from '../../components/layoutManager';
|
|
import './emby-button.css';
|
|
import 'webcomponents.js';
|
|
|
|
const EmbyButtonPrototype = Object.create(HTMLButtonElement.prototype);
|
|
|
|
EmbyButtonPrototype.createdCallback = function () {
|
|
this.classList.add('../../elements/emby-button/paper-icon-button-light');
|
|
|
|
if (layoutManager.tv) {
|
|
this.classList.add('show-focus');
|
|
}
|
|
};
|
|
|
|
document.registerElement('../../elements/emby-button/paper-icon-button-light', {
|
|
prototype: EmbyButtonPrototype,
|
|
extends: 'button'
|
|
});
|