You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
347 B
12 lines
347 B
function fixBrokenLink(is404) {
|
|
if (window.location.hash.length < 1 && !is404)
|
|
return;
|
|
|
|
var fragid = window.location.hash.substr(1);
|
|
if (fragid && document.getElementById(fragid))
|
|
return;
|
|
|
|
var script = document.createElement('script');
|
|
script.src = 'fragment-links.js';
|
|
document.body.appendChild(script);
|
|
}
|