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:
parent
3d97149007
commit
f0763c4eaf
3 changed files with 21 additions and 5 deletions
|
@ -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") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue