mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 13:38:41 +00:00
feat: hide exact value of negative zan values
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
9ad23faefc
commit
5394bbb2f7
@ -116,6 +116,11 @@ class ClickZans {
|
||||
} else {
|
||||
$cls .= 'neutral';
|
||||
}
|
||||
return '<span class="'.$cls.'"><span class="uoj-click-zan-cnt">[<strong>' . ($cnt > 0 ? '+' . $cnt : $cnt) . '</strong>]</span></span>';
|
||||
|
||||
$display_cnt = $cnt > 0 ? '+' . $cnt : $cnt;
|
||||
|
||||
if ($cnt < 0) $display_cnt = '-';
|
||||
|
||||
return '<span class="' . $cls . '"><span class="uoj-click-zan-cnt">[<strong>' . $display_cnt . '</strong>]</span></span>';
|
||||
}
|
||||
}
|
||||
|
@ -327,10 +327,14 @@ $.fn.click_zan_block = function() {
|
||||
click_zan(id, type, -1, node);
|
||||
});
|
||||
|
||||
var display_cnt = cnt > 0 ? '+' + cnt : cnt;
|
||||
|
||||
if (cnt < 0) display_cnt = '-';
|
||||
|
||||
$(this)
|
||||
.append(up_node)
|
||||
.append(down_node)
|
||||
.append($('<span class="uoj-click-zan-cnt">[<strong>' + (cnt > 0 ? '+' + cnt : cnt) + '</strong>]</span>'));
|
||||
.append($('<span class="uoj-click-zan-cnt">[<strong>' + display_cnt + '</strong>]</span>'));
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user