Setting of tinymce and filemanager

This commit is contained in:
mespeche
2013-09-18 18:00:44 +02:00
parent 9fdf648451
commit 72c0685bfa
255 changed files with 14196 additions and 3 deletions

1
web/tinymce/plugins/anchor/plugin.min.js vendored Executable file
View File

@@ -0,0 +1 @@
tinymce.PluginManager.add("anchor",function(e){function t(){var t=e.selection.getNode();e.windowManager.open({title:"Anchor",body:{type:"textbox",name:"name",size:40,label:"Name",value:t.name||t.id},onsubmit:function(t){e.execCommand("mceInsertContent",!1,e.dom.createHTML("a",{id:t.data.name}))}})}e.addButton("anchor",{icon:"anchor",tooltip:"Anchor",onclick:t,stateSelector:"a:not([href])"}),e.addMenuItem("anchor",{icon:"anchor",text:"Anchor",context:"insert",onclick:t})});