X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftemplates%2Fjot-header.tpl;h=a67f9c3f0c35ef0bdea97a1f6061c5c3cf4b3210;hb=8124dedbf6506acfeeb3e1fdac2f87c417d3eb0f;hp=f169b09212a8c5df75c55e5bbe17e6c86790b952;hpb=9ebb2f42a10bc0c71d0ddb87869a0de180f55a64;p=friendica.git diff --git a/view/templates/jot-header.tpl b/view/templates/jot-header.tpl index f169b09212..a67f9c3f0c 100644 --- a/view/templates/jot-header.tpl +++ b/view/templates/jot-header.tpl @@ -8,7 +8,7 @@ var textlen = 0; function initEditor(callback) { if (editor == false) { var colorbox_options = { - {{if $APP->is_mobile}} + {{if $is_mobile}} 'width' : '100%', 'height' : '100%', {{/if}} @@ -19,11 +19,16 @@ function initEditor(callback) { $("#profile-jot-text-loading").show(); $("#profile-jot-text-loading").hide(); $("#profile-jot-text").css({ 'height': 200, 'color': '#000' }); - $("#profile-jot-text").editor_autocomplete(baseurl+"/acl"); + $("#profile-jot-text").editor_autocomplete(baseurl + '/search/acl'); $("#profile-jot-text").bbco_autocomplete('bbcode'); $("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") { @@ -40,7 +45,7 @@ function enableOnUser(){ } - +