mirror of
https://github.com/friendica/friendica
synced 2025-04-24 13:50:10 +00:00
Replace "forum" by "group" in the rest of the code
This commit is contained in:
parent
03bebf57c5
commit
3385147f25
59 changed files with 378 additions and 424 deletions
|
@ -296,11 +296,11 @@ $(function() {
|
|||
$(".circle-"+gid+" .notify").addClass("show").text(gcount);
|
||||
});
|
||||
|
||||
$(".forum-widget-entry .notify").removeClass("show");
|
||||
$(data.forums).each(function(key, forum) {
|
||||
var fid = forum.id;
|
||||
var fcount = forum.count;
|
||||
$(".forum-"+fid+" .notify").addClass("show").text(fcount);
|
||||
$(".group-widget-entry .notify").removeClass("show");
|
||||
$(data.groups).each(function(key, group) {
|
||||
var fid = group.id;
|
||||
var fcount = group.count;
|
||||
$(".group-"+fid+" .notify").addClass("show").text(fcount);
|
||||
});
|
||||
|
||||
if (data.notifications.length == 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue