diff --git a/dashboard-ui/bower_components/emby-webcomponents/.bower.json b/dashboard-ui/bower_components/emby-webcomponents/.bower.json index d5fc1bb59d..5130604b62 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.1.92", - "_release": "1.1.92", + "version": "1.1.93", + "_release": "1.1.93", "_resolution": { "type": "version", - "tag": "1.1.92", - "commit": "b8a3cb7ffffe461b43e389650bd5c14170ea9eb7" + "tag": "1.1.93", + "commit": "3d971009690236323becba5c24803780a345ea54" }, "_source": "git://github.com/MediaBrowser/emby-webcomponents.git", "_target": "~1.1.5", diff --git a/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js b/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js index f12600af4d..1d088bcfac 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js +++ b/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js @@ -56,18 +56,6 @@ define(['browser'], function (browser) { return true; } - // Newer mobile chrome supports it but doesn't report it - if (browser.chrome) { - var version = (browser.version || '').toString().split('.')[0]; - try { - version = parseInt(version); - if (version >= 49) { - return true; - } - } catch (err) { - - } - } return false; } diff --git a/dashboard-ui/bower_components/iron-behaviors/.bower.json b/dashboard-ui/bower_components/iron-behaviors/.bower.json index 85e8252b32..0b0736d6a6 100644 --- a/dashboard-ui/bower_components/iron-behaviors/.bower.json +++ b/dashboard-ui/bower_components/iron-behaviors/.bower.json @@ -29,14 +29,14 @@ "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, "ignore": [], - "homepage": "https://github.com/PolymerElements/iron-behaviors", + "homepage": "https://github.com/polymerelements/iron-behaviors", "_release": "1.0.13", "_resolution": { "type": "version", "tag": "v1.0.13", "commit": "a7bc3428a6da2beed21987b3a8028206826a12bc" }, - "_source": "git://github.com/PolymerElements/iron-behaviors.git", + "_source": "git://github.com/polymerelements/iron-behaviors.git", "_target": "^1.0.0", - "_originalSource": "PolymerElements/iron-behaviors" + "_originalSource": "polymerelements/iron-behaviors" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/iron-icon/.bower.json b/dashboard-ui/bower_components/iron-icon/.bower.json index f0167baf13..9784e3a3b7 100644 --- a/dashboard-ui/bower_components/iron-icon/.bower.json +++ b/dashboard-ui/bower_components/iron-icon/.bower.json @@ -32,14 +32,14 @@ "web-component-tester": "^4.0.0", "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, - "homepage": "https://github.com/polymerelements/iron-icon", + "homepage": "https://github.com/PolymerElements/iron-icon", "_release": "1.0.8", "_resolution": { "type": "version", "tag": "v1.0.8", "commit": "f36b38928849ef3853db727faa8c9ef104d611eb" }, - "_source": "git://github.com/polymerelements/iron-icon.git", + "_source": "git://github.com/PolymerElements/iron-icon.git", "_target": "^1.0.0", - "_originalSource": "polymerelements/iron-icon" + "_originalSource": "PolymerElements/iron-icon" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/iron-location/.bower.json b/dashboard-ui/bower_components/iron-location/.bower.json index 5d0a3871e6..1442a8e71a 100644 --- a/dashboard-ui/bower_components/iron-location/.bower.json +++ b/dashboard-ui/bower_components/iron-location/.bower.json @@ -1,6 +1,6 @@ { "name": "iron-location", - "version": "0.8.0", + "version": "0.8.1", "description": "Bidirectional data binding into the page's URL.", "private": true, "authors": [ @@ -33,11 +33,11 @@ "web-component-tester": "^4.0.0", "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, - "_release": "0.8.0", + "_release": "0.8.1", "_resolution": { "type": "version", - "tag": "v0.8.0", - "commit": "9ed0d3f243a70545204ade98720d16b2ff71feb4" + "tag": "v0.8.1", + "commit": "fe42515f03ff4b3397dedf1c0810f1667f460172" }, "_source": "git://github.com/PolymerElements/iron-location.git", "_target": "^0.8.0", diff --git a/dashboard-ui/bower_components/iron-location/bower.json b/dashboard-ui/bower_components/iron-location/bower.json index eb2477212f..7f242bef01 100644 --- a/dashboard-ui/bower_components/iron-location/bower.json +++ b/dashboard-ui/bower_components/iron-location/bower.json @@ -1,6 +1,6 @@ { "name": "iron-location", - "version": "0.8.0", + "version": "0.8.1", "description": "Bidirectional data binding into the page's URL.", "private": true, "authors": [ diff --git a/dashboard-ui/bower_components/iron-location/iron-location.html b/dashboard-ui/bower_components/iron-location/iron-location.html index 534959247c..7bf1b4ffca 100644 --- a/dashboard-ui/bower_components/iron-location/iron-location.html +++ b/dashboard-ui/bower_components/iron-location/iron-location.html @@ -281,7 +281,20 @@ milliseconds. url = new URL(href); } - if (url.origin !== window.location.origin) { + var origin; + + // IE Polyfill + if (window.location.origin) { + origin = window.location.origin; + } else { + origin = window.location.protocol + '//' + window.location.hostname; + + if (window.location.port) { + origin += ':' + window.location.port; + } + } + + if (url.origin !== origin) { return null; } var normalizedHref = url.pathname + url.search + url.hash;