Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8c627b04 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change Ib471b5b2 into eclair

* changes:
  sdk doc change for esr: Add left nav highlight for interior files in resources tab.
parents 920f2aae f32c5acb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -182,7 +182,7 @@ function highlightNav(fullPageName) {
  var htmlPos = fullPageName.lastIndexOf(".html", fullPageName.length);
  var pathPageName = fullPageName.slice(firstSlashPos, htmlPos + 5);
  var link = $("#devdoc-nav a[href$='"+ pathPageName+"']");
  if ((link.length == 0) && (fullPageName.indexOf("/guide/") != -1)) { 
  if ((link.length == 0) && ((fullPageName.indexOf("/guide/") != -1) || (fullPageName.indexOf("/resources/") != -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)
    lastBackstep = pathPageName.lastIndexOf("/");
    while (link.length == 0) {