[nouns][terms][inclusive] fixes in hash handling
This commit is contained in:
parent
a4aaa59884
commit
84a4114ecf
|
@ -30,6 +30,10 @@
|
||||||
return bufferNode;
|
return bufferNode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (linkBuffer === '') {
|
||||||
|
linkBuffer = '#' + buffer;
|
||||||
|
}
|
||||||
|
|
||||||
if (linkBuffer.indexOf('https://') === 0
|
if (linkBuffer.indexOf('https://') === 0
|
||||||
|| linkBuffer.indexOf('http://') === 0
|
|| linkBuffer.indexOf('http://') === 0
|
||||||
|| linkBuffer.indexOf('mailto:') === 0
|
|| linkBuffer.indexOf('mailto:') === 0
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
export default {
|
export default {
|
||||||
methods: {
|
methods: {
|
||||||
handleHash(namespace, callback, checkAnchor = true) {
|
handleHash(namespace, callback, checkAnchor = true) {
|
||||||
if (!process.client || !window.location.hash) {
|
if (!process.client) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue