diff --git a/public/src/app.js b/public/src/app.js index 5157291698..fc8304571d 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -234,13 +234,13 @@ var socket, parts = url.split('/'), active = parts[parts.length-1]; - jQuery('.nav li').removeClass('active'); + jQuery('#main-nav li').removeClass('active'); if(active) { - jQuery('.nav li a').each(function() { + jQuery('#main-nav li a').each(function() { var href = this.getAttribute('href'); if(active.match(/^users/)) active = 'users'; - if (href.match(active)) { + if (href && href.match(active)) { jQuery(this.parentNode).addClass('active'); return false; } diff --git a/public/templates/header.tpl b/public/templates/header.tpl index f960144fdf..b193223431 100644 --- a/public/templates/header.tpl +++ b/public/templates/header.tpl @@ -45,7 +45,7 @@