You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
626 B
JavaScript

'use strict';
/* globals define, app, socket*/
10 years ago
define('forum/popular', function() {
var Popular = {};
Popular.init = function() {
10 years ago
app.enterRoom('popular_topics');
selectActivePill();
};
function selectActivePill() {
var active = getActiveSection();
$('.nav-pills li').removeClass('active');
$('.nav-pills li a').each(function() {
var $this = $(this);
if ($this.attr('href').match(active)) {
$this.parent().addClass('active');
return false;
}
});
}
function getActiveSection() {
var parts = window.location.href.split('/');
return parts[parts.length - 1];
}
return Popular;
});