mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-04 11:10:04 -04:00
FIX: Don't increase link counts when they are in the thousands
This commit is contained in:
parent
d200e68bab
commit
6626a6c3ea
1 changed files with 4 additions and 1 deletions
|
@ -56,7 +56,10 @@ Discourse.ClickTrack = {
|
|||
if ($link.closest('.badge-category').length === 0) {
|
||||
// nor in oneboxes (except when we force it)
|
||||
if ($link.closest(".onebox-result").length === 0 || $link.hasClass("track-link")) {
|
||||
$badge.html(parseInt($badge.html(), 10) + 1);
|
||||
var html = $badge.html();
|
||||
if (/^\d+$/.test(html)) {
|
||||
$badge.html(parseInt(html, 10) + 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue