add tv genre configuration options

This commit is contained in:
Luke Pulverenti 2016-06-03 15:32:10 -04:00
parent 81ab24a44c
commit f13258a120
24 changed files with 261 additions and 143 deletions

View file

@ -2,10 +2,13 @@
var EmbyInputPrototype = Object.create(HTMLInputElement.prototype);
var inputId = 0;
EmbyInputPrototype.createdCallback = function () {
if (!this.id) {
this.id = 'input' + new Date().getTime();
this.id = 'embyinput' + inputId;
inputId++;
}
};