Skip to content
Snippets Groups Projects
Commit f76deb9f authored by Thomas Müller's avatar Thomas Müller
Browse files

fixing JS synatx errors

parent bdc36461
No related branches found
No related tags found
No related merge requests found
......@@ -40,8 +40,8 @@ GroupList = {
},
modEveryoneCount: function(diff) {
$li = GroupList.getGroupLI(GroupList.everyoneGID);
count = GroupList.getUserCount($li) + diff;
var $li = GroupList.getGroupLI(GroupList.everyoneGID);
var count = GroupList.getUserCount($li) + diff;
GroupList.setUserCount($li, count);
},
......@@ -140,7 +140,7 @@ GroupList = {
}
_.defer(function () {
$(lis).each(function () {
this.removeClass('transparent')
this.removeClass('transparent');
});
});
}
......
......@@ -399,8 +399,8 @@ var UserList = {
}
}
);
}
};
};
}
var addGroup = function (select, group) {
$('select[multiple]').each(function (index, element) {
$element = $(element);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment