PageRenderTime 45ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/editors/tiny_mce_3_4_3_1/plugins/table/js/merge_cells.js

#
JavaScript | 27 lines | 19 code | 8 blank | 0 comment | 0 complexity | 3650484c93d6c9a197d03a5c3c3d2e80 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. tinyMCEPopup.requireLangPack();
  2. var MergeCellsDialog = {
  3. init : function() {
  4. var f = document.forms[0];
  5. f.numcols.value = tinyMCEPopup.getWindowArg('cols', 1);
  6. f.numrows.value = tinyMCEPopup.getWindowArg('rows', 1);
  7. },
  8. merge : function() {
  9. var func, f = document.forms[0];
  10. tinyMCEPopup.restoreSelection();
  11. func = tinyMCEPopup.getWindowArg('onaction');
  12. func({
  13. cols : f.numcols.value,
  14. rows : f.numrows.value
  15. });
  16. tinyMCEPopup.close();
  17. }
  18. };
  19. tinyMCEPopup.onInit.add(MergeCellsDialog.init, MergeCellsDialog);