summaryrefslogtreecommitdiff
path: root/js/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/util.js')
-rw-r--r--js/util.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/js/util.js b/js/util.js
index 6a67da4bc..ad8a44c82 100644
--- a/js/util.js
+++ b/js/util.js
@@ -110,7 +110,7 @@ var SN = { // StatusNet
return;
}
- var remaining = MaxLength - form.find('#'+SN.C.S.NoticeDataText).val().length;
+ var remaining = MaxLength - SN.U.CharacterCount(form);
var counter = form.find('#'+SN.C.S.NoticeTextCount);
if (remaining.toString() != counter.text()) {
@@ -134,6 +134,10 @@ var SN = { // StatusNet
}
},
+ CharacterCount: function(form) {
+ return form.find('#'+SN.C.S.NoticeDataText).val().length;
+ },
+
ClearCounterBlackout: function(form) {
// Allow keyup events to poke the counter again
SN.C.I.CounterBlackout = false;