more tinymce stuff
This commit is contained in:
parent
5a60010a6f
commit
b19f4cf952
468 changed files with 11635 additions and 0 deletions
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/editor_plugin.js
vendored
Normal file
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/editor_plugin.js
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
tinyMCE.importPluginLanguagePack('iespell','cs,el,en,fr_ca,it,ko,sv,zh_cn,fr,de,pl,pt_br,nl,da,he,nb,ru,ru_KOI8-R,ru_UTF-8,nn,fi,cy,es,is,zh_tw,zh_tw_utf8,sk');function TinyMCE_iespell_getInfo(){return{longname:'IESpell',author:'Moxiecode Systems',authorurl:'http://tinymce.moxiecode.com',infourl:'http://tinymce.moxiecode.com/tinymce/docs/plugin_iespell.html',version:tinyMCE.majorVersion+"."+tinyMCE.minorVersion};};function TinyMCE_iespell_getControlHTML(control_name){if(control_name=="iespell"&&(tinyMCE.isMSIE&&!tinyMCE.isOpera)){var cmd='tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceIESpell\');return false;';return '<a href="javascript:'+cmd+'" onclick="'+cmd+'" target="_self" onmousedown="return false;"><img id="{$editor_id}_iespell" src="{$pluginurl}/images/iespell.gif" title="{$lang_iespell_desc}" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.restoreClass(this);" onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');" /></a>';}return "";}function TinyMCE_iespell_execCommand(editor_id,element,command,user_interface,value){if(command=="mceIESpell"){try{var ieSpell=new ActiveXObject("ieSpell.ieSpellExtension");ieSpell.CheckDocumentNode(tinyMCE.getInstanceById(editor_id).contentDocument.documentElement);}catch(e){if(e.number==-2146827859){if(confirm(tinyMCE.getLang("lang_iespell_download","",true)))window.open('http://www.iespell.com/download.php','ieSpellDownload','');}else alert("Error Loading ieSpell: Exception "+e.number);}return true;}return false;}
|
||||
49
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js
vendored
Normal file
49
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js
vendored
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
/* Import plugin specific language pack */
|
||||
tinyMCE.importPluginLanguagePack('iespell', 'cs,el,en,fr_ca,it,ko,sv,zh_cn,fr,de,pl,pt_br,nl,da,he,nb,ru,ru_KOI8-R,ru_UTF-8,nn,fi,cy,es,is,zh_tw,zh_tw_utf8,sk');
|
||||
|
||||
function TinyMCE_iespell_getInfo() {
|
||||
return {
|
||||
longname : 'IESpell',
|
||||
author : 'Moxiecode Systems',
|
||||
authorurl : 'http://tinymce.moxiecode.com',
|
||||
infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_iespell.html',
|
||||
version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns the HTML contents of the iespell control.
|
||||
*/
|
||||
function TinyMCE_iespell_getControlHTML(control_name) {
|
||||
// Is it the iespell control and is the brower MSIE.
|
||||
if (control_name == "iespell" && (tinyMCE.isMSIE && !tinyMCE.isOpera)) {
|
||||
var cmd = 'tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceIESpell\');return false;';
|
||||
return '<a href="javascript:' + cmd + '" onclick="' + cmd + '" target="_self" onmousedown="return false;"><img id="{$editor_id}_iespell" src="{$pluginurl}/images/iespell.gif" title="{$lang_iespell_desc}" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.restoreClass(this);" onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');" /></a>';
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
/**
|
||||
* Executes the mceIESpell command.
|
||||
*/
|
||||
function TinyMCE_iespell_execCommand(editor_id, element, command, user_interface, value) {
|
||||
// Handle ieSpellCommand
|
||||
if (command == "mceIESpell") {
|
||||
try {
|
||||
var ieSpell = new ActiveXObject("ieSpell.ieSpellExtension");
|
||||
ieSpell.CheckDocumentNode(tinyMCE.getInstanceById(editor_id).contentDocument.documentElement);
|
||||
} catch (e) {
|
||||
if (e.number == -2146827859) {
|
||||
if (confirm(tinyMCE.getLang("lang_iespell_download", "", true)))
|
||||
window.open('http://www.iespell.com/download.php', 'ieSpellDownload', '');
|
||||
} else
|
||||
alert("Error Loading ieSpell: Exception " + e.number);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
// Pass to next handler in chain
|
||||
return false;
|
||||
}
|
||||
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/images/iespell.gif
vendored
Normal file
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/images/iespell.gif
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 124 B |
12
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/cs.js
vendored
Normal file
12
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/cs.js
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
/**
|
||||
* Czech lang variables
|
||||
* encoding: utf-8
|
||||
*
|
||||
* $Id: cs.js,v 1.4 2005/10/18 13:59:42 spocke Exp $
|
||||
*/
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Spustit kontrolu pravopisu',
|
||||
iespell_download : "ieSpell nedetekován. Klikněte na OK a otevřete stahovací stránku."
|
||||
});
|
||||
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/cy.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/cy.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Dechrau gwirio sillafu',
|
||||
iespell_download : "Methwyd canfod ieSpell. Cliciwch OK i fynd i'r dudalen lawrlwytho."
|
||||
});
|
||||
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/da.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/da.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// DK lang variables contributed by Jan Moelgaard
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Lav stavekontrol',
|
||||
iespell_download : "ieSpell kan ikke findes. Klik på OK for at fortsætte til downloadsiden."
|
||||
});
|
||||
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/de.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/de.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// DE lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Rechtschreibprüfung',
|
||||
iespell_download : "ieSpell nicht gefunden. Klicken Sie OK, um die Download-Seite aufzurufen."
|
||||
});
|
||||
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/el.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/el.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// Greek lang variables by Jacaranda Bill
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Ïñèïãñáöéêüò Ýëåã÷ïò',
|
||||
iespell_download : "Ôï ðñüãñáììá ieSpell äåí âñÝèçêå. ÐáôÞóôå OK ãéá íá ìåôáâåßôå óôçí éóôïóåëßäá ëÞøçò ôïõ ðñïãñÜììáôïò."
|
||||
});
|
||||
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/en.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/en.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Run spell checking',
|
||||
iespell_download : "ieSpell not detected. Click OK to go to download page."
|
||||
});
|
||||
|
||||
15
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/es.js
vendored
Normal file
15
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/es.js
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
/**
|
||||
* ES lang variables
|
||||
*
|
||||
* Authors : Alvaro Velasco,
|
||||
* Adolfo Sanz De Diego (asanzdiego) <asanzdiego@yahoo.es>,
|
||||
* Carlos C Soto (eclipxe) <csoto@sia-solutions.com>
|
||||
* Last Updated : October 17, 2005
|
||||
* TinyMCE Version : 2.0RC3
|
||||
*/
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Ejecutar corrector ortográfico',
|
||||
iespell_download : "Corrector ortográfico no detectado. Pulse OK para ir a la página de descarga."
|
||||
});
|
||||
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/fr.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/fr.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// French lang variables by Laurent Dran
|
||||
// Modifié par Normand Lamoureux le 2005-11-12
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Lancer le vérificateur d\'orthographe',
|
||||
iespell_download : "Le dictionnaire ieSpell n\'a pas été trouvé.\n\nCliquez sur Ok pour aller au site de téléchargement."
|
||||
});
|
||||
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/fr_ca.js
vendored
Normal file
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/fr_ca.js
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
// Canadian French lang variables by Virtuelcom last modification: 2005-06-15
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Executer le vérificateur d\'orthographe',
|
||||
iespell_download : "ieSpell n\'a pas été trouvé. Cliquez sur OK pour aller au site de téléchargement."
|
||||
});
|
||||
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/he.js
vendored
Normal file
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/he.js
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
// HE lang variables by Liron Newman, http://eesh.net
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'הפעל בדיקת איות',
|
||||
iespell_download : "לא נמצא ieSpell. לחץ על אישור כדי להגיע לדף ההורדה."
|
||||
});
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/hu.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/hu.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// HU lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Helyesírásellenõrzés indítása',
|
||||
iespell_download : "ieSpell nem található. Kattints az OK-ra a letöltési oldalhoz."
|
||||
});
|
||||
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/is.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/is.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// Iceland lang variables by Johannes Birgir Jensson
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Stafsetningarpúki',
|
||||
iespell_download : "ieSpell ekki til staðar. Smellið á OK til að sjá niðurhalssíðu."
|
||||
});
|
||||
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/it.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/it.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// IT lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Avvia il controllo ortografico',
|
||||
iespell_download : "ieSpell non trovato. Clicca OK per andare alla pagina di download."
|
||||
});
|
||||
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/ko.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/ko.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// KO lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : '¸ÂÃã¹ý °Ë»ç ½ÇÇà',
|
||||
iespell_download : "ieSpellÀ» ãÀ» ¼ö ¾ø½À´Ï´Ù. OK¸¦ ´©¸£¸é ´Ù¿î·Îµå ÆäÀÌÁö·Î À̵¿ÇÕ´Ï´Ù."
|
||||
});
|
||||
|
||||
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/nb.js
vendored
Normal file
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/nb.js
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
// nb = Norwegian (bokmål) lang variables by Knut B. Jacobsen
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Kjør rettstavingskontroll',
|
||||
iespell_download : "ieSpell virker ikke å være installert. Klikk OK for å laste hjem."
|
||||
});
|
||||
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/nl.js
vendored
Normal file
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/nl.js
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
// NL lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Spellingscontrole',
|
||||
iespell_download : "ieSpell niet gedetecteerd. Klik op OK om deze te downloaden."
|
||||
});
|
||||
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/nn.js
vendored
Normal file
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/nn.js
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
// nn = Norwegian (nynorsk) lang variables by Knut B. Jacobsen
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Kjør rettstavingskontroll',
|
||||
iespell_download : "ieSpell virker ikke å være installert. Klikk OK for å laste hjem."
|
||||
});
|
||||
8
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/pl.js
vendored
Normal file
8
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/pl.js
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
// PL lang variables
|
||||
// fixed by Wooya
|
||||
// http://www.mfusion.prv.pl
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Uruchom sprawdzanie pisowni',
|
||||
iespell_download : "Nie wykryto pluginu, kliknij aby przejść do strony z pluginami."
|
||||
});
|
||||
14
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/pt_br.js
vendored
Normal file
14
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/pt_br.js
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
* pt_br lang variables
|
||||
* Brazilian Portuguese
|
||||
*
|
||||
* Authors : ????
|
||||
* Revision and modifications:
|
||||
* Marcio Barbosa (mpg) <mpg@mpg.com.br>
|
||||
* Last Updated : November 26, 2005
|
||||
* TinyMCE Version : 2.0RC4
|
||||
*/
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Executar verificação ortográfica',
|
||||
iespell_download : "Verificador ieSpell não detectado. Click OK para ir à página de download."
|
||||
});
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/ru.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/ru.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// RU lang variables cp1251
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Запустить проверку орфографии',
|
||||
iespell_download : "ieSpell не обнаружен. нажмите OK, чтобы перейти на страницу загрузки."
|
||||
});
|
||||
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/ru_KOI8-R.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/ru_KOI8-R.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// RU lang variables KOI8-R
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Запустить проверку орфографии',
|
||||
iespell_download : "ieSpell не обнаружен. нажмите OK, чтобы перейти на страницу загрузки."
|
||||
});
|
||||
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/ru_UTF-8.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/ru_UTF-8.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// RU lang variables UTF-8
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Запустить проверку орфографии',
|
||||
iespell_download : "ieSpell не обнаружен. нажмите OK, чтобы перейти на страницу загрузки."
|
||||
});
|
||||
|
||||
14
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/sk.js
vendored
Normal file
14
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/sk.js
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
* Slovak lang variables
|
||||
* encoding: utf-8
|
||||
*
|
||||
* @author Vladimir VASIL vvasil@post.sk
|
||||
*
|
||||
* $Id: sk.js,v 1.1 2005/11/22 20:56:44 spocke Exp $
|
||||
*/
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Spustiť kontrolu pravopisu',
|
||||
iespell_download : "ieSpell nedetekovaný Kliknite na OK a otvorte stahovaciu stránku."
|
||||
});
|
||||
|
||||
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/sv.js
vendored
Normal file
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/sv.js
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
// SE lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : 'Kör rättstavningskontroll',
|
||||
iespell_download : "ieSpell verkar inte vara installerad. Klicka OK för att ladda hem."
|
||||
});
|
||||
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/zh_cn.js
vendored
Normal file
6
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/zh_cn.js
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
// Simplified Chinese lang variables contributed by tom_cat (thomaswangyang@gmail.com)
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : '运行拼写检查',
|
||||
iespell_download : "未检测到 ieSpell 拼写检查,点击 OK 前往下载页面。"
|
||||
});
|
||||
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/zh_tw.js
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/zh_tw.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// Traditional Chinese BIG-5; Twapweb Site translated; twapweb_AT_gmail_DOT_com
|
||||
// 繁體中文 BIG-5 ;數位應用坊製作; twapweb_AT_gmail_DOT_com
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : '執行拼字檢查',
|
||||
iespell_download : "無 ieSpell 拼字檢查功能。點按「確定」後下載安裝"
|
||||
});
|
||||
8
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/zh_tw_utf8.js
vendored
Normal file
8
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/langs/zh_tw_utf8.js
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
// Traditional Chinese UTF-8; Twapweb Site translated; twapweb_AT_gmail_DOT_com
|
||||
// 繁體中文 UTF-8 ;數位應用坊製作; twapweb_AT_gmail_DOT_com
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
iespell_desc : '執行拼字檢查',
|
||||
iespell_download : "無 ieSpell 拼字檢查功能。點按「確定」後下載安裝"
|
||||
});
|
||||
|
||||
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/readme.txt
vendored
Normal file
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/iespell/readme.txt
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
Check the TinyMCE documentation for details on this plugin.
|
||||
Loading…
Add table
Add a link
Reference in a new issue