![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/themes/mauer-essentialist/js/ |
(function ($) { "use strict"; function excerptCharacterCount() { $('.editor-post-excerpt').each(function(){ if (!$(this).find('.mauer-essentialist-excerpt-chars-count').length) { $("<div class='mauer-essentialist-excerpt-chars-count'><i></i> " + mauerEssentialistAdminScriptsTranslationObject.message1 + "</div>").insertAfter($(this).find('.components-textarea-control__input')); } var charCount = $(this).find('.components-textarea-control__input').text().length; $(this).find('.mauer-essentialist-excerpt-chars-count i').text(charCount); if (charCount > 160 ) { $(this).find('.mauer-essentialist-excerpt-chars-count i').addClass('attn'); } else { $(this).find('.mauer-essentialist-excerpt-chars-count i').removeClass('attn'); } }); } $(window).load(function() { excerptCharacterCount(); $('.components-textarea-control__input').on("keyup", function(){ excerptCharacterCount(); }); window.setInterval(function(){ $('.components-panel__body.is-opened').each(function(){ if($(this).find('.editor-post-excerpt').length && !$(this).find('.mauer-essentialist-excerpt-chars-count').length) { excerptCharacterCount(); $(this).find('.components-textarea-control__input').on("keyup", function(){ excerptCharacterCount(); }); } }); }, 500); }); })(jQuery);