mirror of
https://github.com/e107inc/e107.git
synced 2025-10-11 13:04:28 +02:00
TinyMce converted to a plugin.
This commit is contained in:
24
e107_plugins/tinymce/plugins/table/jscripts/merge_cells.js
Normal file
24
e107_plugins/tinymce/plugins/table/jscripts/merge_cells.js
Normal file
@@ -0,0 +1,24 @@
|
||||
function init() {
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
|
||||
var formObj = document.forms[0];
|
||||
|
||||
formObj.numcols.value = tinyMCE.getWindowArg('numcols', 1);
|
||||
formObj.numrows.value = tinyMCE.getWindowArg('numrows', 1);
|
||||
}
|
||||
|
||||
function mergeCells() {
|
||||
var args = new Array();
|
||||
var formObj = document.forms[0];
|
||||
|
||||
if (!AutoValidator.validate(formObj)) {
|
||||
alert(tinyMCE.getLang('lang_invalid_data'));
|
||||
return false;
|
||||
}
|
||||
|
||||
args["numcols"] = formObj.numcols.value;
|
||||
args["numrows"] = formObj.numrows.value;
|
||||
|
||||
tinyMCEPopup.execCommand("mceTableMergeCells", false, args);
|
||||
tinyMCEPopup.close();
|
||||
}
|
Reference in New Issue
Block a user