forked from platypush/platypush
Don't consider the trailing / in pre-select tab mode
This commit is contained in:
parent
b02b30656c
commit
8caa170676
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ window.vm = new Vue({
|
||||||
},
|
},
|
||||||
|
|
||||||
created: function() {
|
created: function() {
|
||||||
m = window.location.href.match('/#([a-zA-Z0-9._]+)$');
|
m = window.location.href.match('#([a-zA-Z0-9._]+)$');
|
||||||
if (m) {
|
if (m) {
|
||||||
this.selectedPlugin = m[1];
|
this.selectedPlugin = m[1];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue