diff options
author | Friendika <info@friendika.com> | 2011-05-19 20:11:09 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-05-19 20:11:09 -0700 |
commit | 20807ab8b4e0d1180b7fe74624a58b80b6cfc52a (patch) | |
tree | 618b1ebb22ba1372f929442fcae3fb979d08d198 /view/jot-header.tpl | |
parent | a27b7fb28d151c00eef8319cdf876896d36df8b0 (diff) | |
download | volse-hubzilla-20807ab8b4e0d1180b7fe74624a58b80b6cfc52a.tar.gz volse-hubzilla-20807ab8b4e0d1180b7fe74624a58b80b6cfc52a.tar.bz2 volse-hubzilla-20807ab8b4e0d1180b7fe74624a58b80b6cfc52a.zip |
dispy jot-header.tpl missing some code updates
Diffstat (limited to 'view/jot-header.tpl')
-rw-r--r-- | view/jot-header.tpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/jot-header.tpl b/view/jot-header.tpl index 0fcd1e42f..25f2736c7 100644 --- a/view/jot-header.tpl +++ b/view/jot-header.tpl @@ -30,13 +30,14 @@ tinyMCE.init({ //Character count ed.onKeyUp.add(function(ed, e) { var txt = tinyMCE.activeEditor.getContent(); - textlen = txt.length; + var textlen = txt.length; if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) { $('#profile-jot-desc').html(ispublic); } else { $('#profile-jot-desc').html(' '); } + if(textlen <= 140) { $('#character-counter').removeClass('red'); $('#character-counter').removeClass('orange'); |