summaryrefslogtreecommitdiff
path: root/chimere/static/tinymce/plugins/wordcount
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-07-16 10:24:27 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-07-16 10:25:50 +0200
commit5511e44f8bf92addeaadc9ddcf39fb8e27f9c50c (patch)
treec621737b9c4f522aa9aacbb1013713ea40fe0533 /chimere/static/tinymce/plugins/wordcount
parenta6db3281d61e57a33526ef3794bc60ed24415ff2 (diff)
downloadChimère-5511e44f8bf92addeaadc9ddcf39fb8e27f9c50c.tar.bz2
Chimère-5511e44f8bf92addeaadc9ddcf39fb8e27f9c50c.zip
Fix tinymce reinit on ajax call
Diffstat (limited to 'chimere/static/tinymce/plugins/wordcount')
-rw-r--r--chimere/static/tinymce/plugins/wordcount/plugin.min.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/chimere/static/tinymce/plugins/wordcount/plugin.min.js b/chimere/static/tinymce/plugins/wordcount/plugin.min.js
deleted file mode 100644
index f20e765..0000000
--- a/chimere/static/tinymce/plugins/wordcount/plugin.min.js
+++ /dev/null
@@ -1 +0,0 @@
-tinymce.PluginManager.add("wordcount",function(a){function b(){a.theme.panel.find("#wordcount").text(["Words: {0}",e.getCount()])}var c,d,e=this;c=a.getParam("wordcount_countregex",/[\w\u2019\x27\-\u00C0-\u1FFF]+/g),d=a.getParam("wordcount_cleanregex",/[0-9.(),;:!?%#$?\x27\x22_+=\\\/\-]*/g),a.on("init",function(){var c=a.theme.panel&&a.theme.panel.find("#statusbar")[0];c&&tinymce.util.Delay.setEditorTimeout(a,function(){c.insert({type:"label",name:"wordcount",text:["Words: {0}",e.getCount()],classes:"wordcount",disabled:a.settings.readonly},0),a.on("setcontent beforeaddundo",b),a.on("keyup",function(a){32==a.keyCode&&b()})},0)}),e.getCount=function(){var b=a.getContent({format:"raw"}),e=0;if(b){b=b.replace(/\.\.\./g," "),b=b.replace(/<.[^<>]*?>/g," ").replace(/&nbsp;|&#160;/gi," "),b=b.replace(/(\w+)(&#?[a-z0-9]+;)+(\w+)/i,"$1$3").replace(/&.+?;/g," "),b=b.replace(d,"");var f=b.match(c);f&&(e=f.length)}return e}}); \ No newline at end of file