diff options
author | Andrew Manning <tamanning@zoho.com> | 2017-02-11 14:40:04 -0500 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2017-02-11 14:40:04 -0500 |
commit | e058b19f530bd7f8b420b068b46f917e0d9ef845 (patch) | |
tree | 8693f4865c2c0c79f67ab94bf8b4b63840401769 /doc | |
parent | bc3605a5025908ae0835c057cb7caa1bc26d9c37 (diff) | |
download | volse-hubzilla-e058b19f530bd7f8b420b068b46f917e0d9ef845.tar.gz volse-hubzilla-e058b19f530bd7f8b420b068b46f917e0d9ef845.tar.bz2 volse-hubzilla-e058b19f530bd7f8b420b068b46f917e0d9ef845.zip |
Scroll to doco links with anchor references when there is a ?zid parameter.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/toc.html | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/doc/toc.html b/doc/toc.html index 4c52c5e74..851f356e6 100644 --- a/doc/toc.html +++ b/doc/toc.html @@ -74,7 +74,7 @@ $(".panel-collapse.in").find('a').each(function(){ var url = document.createElement('a'); url.href = window.location; - var pageName = url.href.split('/').pop().split('#').shift(); + var pageName = url.href.split('/').pop().split('#').shift().split('?').shift(); var linkName = $(this).attr('href').split('/').pop(); if(pageName === linkName) { var tocUl = $(this).closest('li').append('<ul>').find('ul'); @@ -116,8 +116,15 @@ // When the page loads, it does not scroll to the section specified in the URL because it // has not been constructed yet by the script. This will reload the URL - if (typeof(location.href.split('#')[1]) !== 'undefined') { - location.replace(location.href) + if (typeof(location.href.split('#')[1]) !== 'undefined') { + var p = document.createElement('a'); + p.href = location.href; + var portstr = ''; + if(p.port !== '') { + portstr = ':'+ p.port; + } + var newref = p.protocol + '//'+ p.hostname + portstr + p.pathname + p.hash.split('?').shift(); + location.replace(newref) } }); </script> |