FEATURE: Add quote-modified class if a quote has been modified

This commit is contained in:
Robin Ward
2018-03-13 13:07:51 -04:00
parent f7bd05e534
commit 31a0c4a9be
6 changed files with 126 additions and 7 deletions

View File

@@ -73,12 +73,12 @@ function __lookupAvatar(p) {
return __utils.avatarImg({size: "tiny", avatarTemplate: __helpers.avatar_template(p) }, __getURL);
}
function __formatUsername(u) {
return __helpers.format_username(u);
function __formatUsername(username) {
return __helpers.format_username(username);
}
function __lookupPrimaryUserGroup(p) {
return __helpers.lookup_primary_user_group(p);
function __lookupPrimaryUserGroup(username) {
return __helpers.lookup_primary_user_group(username);
}
function __getCurrentUser(userId) {