aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/comments/frontend/incrementcounts.js
blob: 74e3d8c2e32ba53a48702e523b48b1e7f37343e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Increase comment counts (incrementcounts.js)
HashOver.prototype.incrementCounts = function (isReply)
{
	// Count top level comments
	if (isReply === false) {
		this.instance['primary-count']++;
	}

	// Increase all count
	this.instance['total-count']++;
};