mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e550de71e3
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@93610 467b73ca-7a2a-4603-9d3b-597d59a354a9
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);
|