am 0d8872e6
: docs: change javascript so that SDK docs that are not listed in the left nav do not highlight parent index documents
Merge commit '0d8872e6f2462a947c1543b88a7a353072b808e3' into eclair * commit '0d8872e6f2462a947c1543b88a7a353072b808e3': docs: change javascript so that SDK docs that are not
This commit is contained in:
@@ -156,8 +156,8 @@ function highlightNav(fullPageName) {
|
|||||||
var htmlPos = fullPageName.lastIndexOf(".html", fullPageName.length);
|
var htmlPos = fullPageName.lastIndexOf(".html", fullPageName.length);
|
||||||
var pathPageName = fullPageName.slice(firstSlashPos, htmlPos + 5);
|
var pathPageName = fullPageName.slice(firstSlashPos, htmlPos + 5);
|
||||||
var link = $("#devdoc-nav a[href$='"+ pathPageName+"']");
|
var link = $("#devdoc-nav a[href$='"+ pathPageName+"']");
|
||||||
if ((link.length == 0) && ((fullPageName.indexOf("/guide/") != -1) || (fullPageName.indexOf("/sdk/") != -1))) {
|
if ((link.length == 0) && (fullPageName.indexOf("/guide/") != -1)) {
|
||||||
// if there's no match, then let's backstep through the directory until we find an index.html page that matches our ancestor directories (only for dev guide and sdk)
|
// if there's no match, then let's backstep through the directory until we find an index.html page that matches our ancestor directories (only for dev guide)
|
||||||
lastBackstep = pathPageName.lastIndexOf("/");
|
lastBackstep = pathPageName.lastIndexOf("/");
|
||||||
while (link.length == 0) {
|
while (link.length == 0) {
|
||||||
backstepDirectory = pathPageName.lastIndexOf("/", lastBackstep);
|
backstepDirectory = pathPageName.lastIndexOf("/", lastBackstep);
|
||||||
|
Reference in New Issue
Block a user