blob: 2c97d55457fa4bc901e7810b67f0855e7780bb01 [file] [log] [blame]
/* Add the 'active' class to the correct navbar item (<li>) according to the
global 'topLevelNav' variable defined by each page.
*/
$(function() {
$('#topNav a').each(function(i) {
var $this = $(this);
if (topLevelNav == $this.text())
$this.parent().addClass('active');
else
$this.parent().removeClass('active');
});
});