diff --git a/dashboard-ui/bower_components/emby-webcomponents/.bower.json b/dashboard-ui/bower_components/emby-webcomponents/.bower.json index 7c3f29a828..71a423c6f9 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/.bower.json +++ b/dashboard-ui/bower_components/emby-webcomponents/.bower.json @@ -16,12 +16,12 @@ }, "devDependencies": {}, "ignore": [], - "version": "1.3.93", - "_release": "1.3.93", + "version": "1.3.94", + "_release": "1.3.94", "_resolution": { "type": "version", - "tag": "1.3.93", - "commit": "e471f95b705f30e5e07437f1adb28ca9f957b6e3" + "tag": "1.3.94", + "commit": "4c485c81f1611cd184ca31455de0535105a6e123" }, "_source": "https://github.com/MediaBrowser/emby-webcomponents.git", "_target": "^1.2.0", diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-input/emby-input.js b/dashboard-ui/bower_components/emby-webcomponents/emby-input/emby-input.js index 08bc197182..40ee5ba71e 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-input/emby-input.js +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-input/emby-input.js @@ -28,13 +28,6 @@ EmbyInputPrototype.createdCallback = function () { - var parent = this.parentNode; - if (!parent.classList.contains('inputContainer')) { - var div = this.ownerDocument.createElement('div'); - div.classList.add('inputContainer'); - parent.replaceChild(div, this); - div.appendChild(this); - } if (!this.id) { this.id = 'input' + new Date().getTime(); } @@ -51,16 +44,17 @@ if (this.getAttribute('data-embyinput') != 'true') { this.setAttribute('data-embyinput', 'true'); + var parentNode = this.parentNode; var label = this.ownerDocument.createElement('label'); label.innerHTML = this.getAttribute('label') || ''; label.classList.add('inputLabel'); label.classList.add('inputLabelUnfocused'); label.htmlFor = this.id; - this.parentNode.insertBefore(label, this); + parentNode.insertBefore(label, this); var div = document.createElement('div'); div.classList.add('emby-input-selectionbar'); - this.parentNode.insertBefore(div, this.nextSibling); + parentNode.insertBefore(div, this.nextSibling); } }; diff --git a/dashboard-ui/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js b/dashboard-ui/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js index d3887e4a33..6c55ec8b13 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js +++ b/dashboard-ui/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js @@ -147,7 +147,9 @@ html += '