[Client] Fix bug

This commit is contained in:
syuilo 2017-02-22 13:22:24 +09:00
parent d2182c1705
commit 3175706086

View file

@ -33,15 +33,14 @@
this.url = this.opts.href;
this.on('before-mount', () => {
parser = document.createElement('a');
parser.href = this.url;
const url = new URL(this.url);
this.schema = parser.protocol;
this.hostname = parser.hostname;
this.port = parser.port;
this.pathname = parser.pathname;
this.query = parser.search;
this.hash = parser.hash;
this.schema = url.protocol;
this.hostname = url.hostname;
this.port = url.port;
this.pathname = url.pathname;
this.query = url.search;
this.hash = url.hash;
this.update();
});