mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
28 lines
566 B
JavaScript
28 lines
566 B
JavaScript
tinyMCEPopup.requireLangPack();
|
|
|
|
var MergeCellsDialog = {
|
|
init : function() {
|
|
var f = document.forms[0];
|
|
|
|
f.numcols.value = tinyMCEPopup.getWindowArg('cols', 1);
|
|
f.numrows.value = tinyMCEPopup.getWindowArg('rows', 1);
|
|
},
|
|
|
|
merge : function() {
|
|
var func, f = document.forms[0];
|
|
|
|
tinyMCEPopup.restoreSelection();
|
|
|
|
func = tinyMCEPopup.getWindowArg('onaction');
|
|
|
|
func({
|
|
cols : f.numcols.value,
|
|
rows : f.numrows.value
|
|
});
|
|
|
|
tinyMCEPopup.close();
|
|
}
|
|
};
|
|
|
|
tinyMCEPopup.onInit.add(MergeCellsDialog.init, MergeCellsDialog);
|