1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-03-29 21:32:51 -04:00
parent e65500d84e
commit bc878e5fac
7 changed files with 29 additions and 28 deletions

View file

@ -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",

View file

@ -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": [

View file

@ -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;