mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
30 lines
677 B
JavaScript
30 lines
677 B
JavaScript
|
tinyMCEPopup.requireLangPack();
|
||
|
|
||
|
function init() {
|
||
|
var f = document.forms[0], v;
|
||
|
|
||
|
tinyMCEPopup.resizeToInnerSize();
|
||
|
|
||
|
f.numcols.value = tinyMCEPopup.getWindowArg('numcols', 1);
|
||
|
f.numrows.value = tinyMCEPopup.getWindowArg('numrows', 1);
|
||
|
}
|
||
|
|
||
|
function mergeCells() {
|
||
|
var args = [], f = document.forms[0];
|
||
|
|
||
|
tinyMCEPopup.restoreSelection();
|
||
|
|
||
|
if (!AutoValidator.validate(f)) {
|
||
|
tinyMCEPopup.alert(tinyMCEPopup.getLang('invalid_data'));
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
args["numcols"] = f.numcols.value;
|
||
|
args["numrows"] = f.numrows.value;
|
||
|
|
||
|
tinyMCEPopup.execCommand("mceTableMergeCells", false, args);
|
||
|
tinyMCEPopup.close();
|
||
|
}
|
||
|
|
||
|
tinyMCEPopup.onInit.add(init);
|