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.
nodebb/public/src/forum/following.js

17 lines
333 B
JavaScript

define(['forum/accountheader'], function(header) {
var Following = {};
Following.init = function() {
header.init();
var followingCount = templates.get('followingCount');
if (parseInt(followingCount, 10) === 0) {
$('#no-following-notice').removeClass('hide');
}
app.addCommasToNumbers();
};
return Following;
});