[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 tinyMCEPopup.requireLangPack(); 2 3 var MergeCellsDialog = { 4 init : function() { 5 var f = document.forms[0]; 6 7 f.numcols.value = tinyMCEPopup.getWindowArg('cols', 1); 8 f.numrows.value = tinyMCEPopup.getWindowArg('rows', 1); 9 }, 10 11 merge : function() { 12 var func, f = document.forms[0]; 13 14 tinyMCEPopup.restoreSelection(); 15 16 func = tinyMCEPopup.getWindowArg('onaction'); 17 18 func({ 19 cols : f.numcols.value, 20 rows : f.numrows.value 21 }); 22 23 tinyMCEPopup.close(); 24 } 25 }; 26 27 tinyMCEPopup.onInit.add(MergeCellsDialog.init, MergeCellsDialog);
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Aug 11 10:00:09 2016 | Cross-referenced by PHPXref 0.7.1 |