summaryrefslogtreecommitdiff
path: root/js/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/util.js')
-rw-r--r--js/util.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/util.js b/js/util.js
index ef147bef4..1ab711cd1 100644
--- a/js/util.js
+++ b/js/util.js
@@ -23,7 +23,9 @@ $(document).ready(function(){
var currentLength = $("#notice_data-text").val().length;
var remaining = maxLength - currentLength;
var counter = $("#notice_text-count");
- counter.text(remaining);
+ if (counter.text() != String(remaining)) {
+ counter.text(remaining);
+ }
if (remaining < 0) {
$("#form_notice").addClass("warning");