diff options
author | Simon <simon@kisikew.org> | 2012-03-07 07:08:23 -0800 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-03-07 07:08:23 -0800 |
commit | 58c557b3ad73cd5699d329254bd2aab53d9e14c2 (patch) | |
tree | 4ddb60fea72a88706a5ea8a8dd08e3231e58b351 /view/theme/dispy/jot-header.tpl | |
parent | dd2ff7c796302648992835940600c18fd200c388 (diff) | |
parent | 66d2c52b5f076187f7b6b9eb3caa51b916a7da21 (diff) | |
download | volse-hubzilla-58c557b3ad73cd5699d329254bd2aab53d9e14c2.tar.gz volse-hubzilla-58c557b3ad73cd5699d329254bd2aab53d9e14c2.tar.bz2 volse-hubzilla-58c557b3ad73cd5699d329254bd2aab53d9e14c2.zip |
Merge pull request #104 from simonlnu/master
push fix for funky menu action. the overflow-x might break again for some people
Diffstat (limited to 'view/theme/dispy/jot-header.tpl')
-rw-r--r-- | view/theme/dispy/jot-header.tpl | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/view/theme/dispy/jot-header.tpl b/view/theme/dispy/jot-header.tpl index e72000b4c..43dcdbb84 100644 --- a/view/theme/dispy/jot-header.tpl +++ b/view/theme/dispy/jot-header.tpl @@ -1,12 +1,7 @@ -<script type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce.js"></script> -<script type="text/javascript" src="$baseurl/js/ajaxupload.js"></script> <script type="text/javascript"> - var editor = false; var textlen = 0; var plaintext = '$editselect'; -// this is here because of the silly tinymce error. didn't help. -var skin = 'default'; function initEditor(cb) { if (editor==false) { @@ -119,7 +114,9 @@ function enableOnUser(){ $(this).val(""); initEditor(); } - +</script> +<script type="text/javascript" src="$baseurl/js/ajaxupload.js"></script> +<script type="text/javascript"> var ispublic = '$ispublic'; var addtitle = '$addtitle'; @@ -127,6 +124,7 @@ function enableOnUser(){ /* enable tinymce on focus and click */ $("#profile-jot-text").focus(enableOnUser); $("#profile-jot-text").click(enableOnUser); + /* enable character counter */ $("#profile-jot-text").focus(charCounter); $("#profile-jot-text").click(charCounter); |