add character counter to themes other then frio

Only vier needed some styling so that the counter looked fitting.

closes #2525
This commit is contained in:
Tobias Diekershoff 2021-10-03 14:55:21 +02:00
commit f0763c4eaf
3 changed files with 21 additions and 5 deletions

View file

@ -24,6 +24,11 @@ function initEditor(callback) {
$("a#jot-perms-icon").colorbox(colorbox_options);
$(".jothidden").show();
$("#profile-jot-text").keyup(function(){
var textlen = $(this).val().length;
$('#character-counter').text(textlen);
});
editor = true;
}
if (typeof callback != "undefined") {