b0y-101 Mini Shell


Current Path : E:/www/km/07/components/com_jce/editor/tiny_mce/plugins/textcase/
File Upload :
Current File : E:/www/km/07/components/com_jce/editor/tiny_mce/plugins/textcase/editor_plugin.js

/* jce - 2.9.4 | 2021-03-16 | https://www.joomlacontenteditor.net | Copyright (C) 2006 - 2021 Ryan Demmer. All rights reserved | GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html */
!function(){tinymce.each;tinymce.create("tinymce.plugins.TextCase",{init:function(ed,url){var self=this;this.url=url,this.editor=ed,ed.addCommand("mceUpperCase",function(){self._upperCase()}),ed.addCommand("mceLowerCase",function(){self._lowerCase()}),ed.addCommand("mceTitleCase",function(){self._titleCase()}),ed.addCommand("mceSentenceCase",function(){self._sentenceCase()}),ed.onNodeChange.add(function(ed,cm,n,co){cm.setDisabled("textcase",co)})},createControl:function(n,cm){var self=this,ed=self.editor;if("textcase"===n){var c=cm.createSplitButton("textcase",{title:"textcase.uppercase",icon:"uppercase",onclick:function(){ed.execCommand("mceUpperCase")}});return c.onRenderMenu.add(function(c,m){m.add({title:"textcase.uppercase",icon:"uppercase",onclick:function(){ed.execCommand("mceUpperCase")}}),m.add({title:"textcase.lowercase",icon:"lowercase",onclick:function(){ed.execCommand("mceLowerCase")}}),m.add({title:"textcase.sentencecase",icon:"sentencecase",onclick:function(){ed.execCommand("mceSentenceCase")}}),m.add({title:"textcase.titlecase",icon:"titlecase",onclick:function(){ed.execCommand("mceTitleCase")}})}),c}return null},_sentenceCase:function(){var ed=this.editor,s=ed.selection,text=s.getContent();text=text.toLowerCase().replace(/([\u0000-\u1FFF])/,function(a,b){return b.toUpperCase()}).replace(/(\.\s?)([\u0000-\u1FFF])/gi,function(a,b,c){return b+c.toUpperCase()}),s.setContent(text)},_titleCase:function(){var ed=this.editor,s=ed.selection,text=s.getContent();text=text.toLowerCase(),text=text.replace(/(?:^|\s)[\u0000-\u1FFF]/g,function(match){return match.toUpperCase()}),s.setContent(text)},_lowerCase:function(){var ed=this.editor,s=ed.selection,text=s.getContent();s.setContent(text.toLowerCase())},_upperCase:function(){var ed=this.editor,s=ed.selection,text=s.getContent();s.setContent(text.toUpperCase())}}),tinymce.PluginManager.add("textcase",tinymce.plugins.TextCase)}();

Copyright © 2019 by b0y-101