aboutsummaryrefslogtreecommitdiffstats
path: root/view/jot-header.tpl
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-19 20:41:40 -0700
committerFriendika <info@friendika.com>2011-05-19 20:41:40 -0700
commit9ab6055b249b78c6b43be71e714e11118592dbcc (patch)
treed1115cb101cf735ad6db64bf5943ccd0c758117f /view/jot-header.tpl
parent20807ab8b4e0d1180b7fe74624a58b80b6cfc52a (diff)
downloadvolse-hubzilla-9ab6055b249b78c6b43be71e714e11118592dbcc.tar.gz
volse-hubzilla-9ab6055b249b78c6b43be71e714e11118592dbcc.tar.bz2
volse-hubzilla-9ab6055b249b78c6b43be71e714e11118592dbcc.zip
textlen defined outside function
Diffstat (limited to 'view/jot-header.tpl')
-rw-r--r--view/jot-header.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/jot-header.tpl b/view/jot-header.tpl
index 25f2736c7..3057618b2 100644
--- a/view/jot-header.tpl
+++ b/view/jot-header.tpl
@@ -30,7 +30,7 @@ tinyMCE.init({
//Character count
ed.onKeyUp.add(function(ed, e) {
var txt = tinyMCE.activeEditor.getContent();
- var textlen = txt.length;
+ textlen = txt.length;
if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) {
$('#profile-jot-desc').html(ispublic);
}