We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e963ba commit 0b76de5Copy full SHA for 0b76de5
build/jsdocs/template/static/scripts/main.js
@@ -65,6 +65,9 @@ $(function () {
65
var isGlobal = window.location.href.indexOf('global.html') > -1;
66
if (isGlobal) {
67
filename = window.location.hash.substring(1);
68
+ // global.html#GraduatedMode#.CONSTANT
69
+ var secIndex = filename.indexOf('#');
70
+ filename = secIndex > -1 ? filename.substring(0, secIndex) : filename;
71
}
72
var $currentItem = $('.main-sidebar .item[data-name="' + filename + '"]:eq(0)');
73
if ($currentItem.length) {
0 commit comments