2020-07-10 18:09:02 +01:00
|
|
|
const ProgramCellPrototype = Object.create(HTMLButtonElement.prototype);
|
2020-04-13 13:09:01 +02:00
|
|
|
|
2020-07-08 18:01:19 +01:00
|
|
|
ProgramCellPrototype.detachedCallback = function () {
|
|
|
|
this.posLeft = null;
|
|
|
|
this.posWidth = null;
|
|
|
|
this.guideProgramName = null;
|
|
|
|
};
|
2020-04-13 13:09:01 +02:00
|
|
|
|
2020-07-08 18:01:19 +01:00
|
|
|
document.registerElement('emby-programcell', {
|
|
|
|
prototype: ProgramCellPrototype,
|
|
|
|
extends: 'button'
|
2020-04-13 13:09:01 +02:00
|
|
|
});
|