From 670e83b30050201e3ac069c9dfa86a92aff2431d Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 30 May 2016 22:16:34 -0700 Subject: remove a bunch of unused stuff, some of which is orphaned and some which represents dead development efforts --- .../tiny_mce/plugins/table/js/merge_cells.js | 27 ---------------------- 1 file changed, 27 deletions(-) delete mode 100644 library/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js (limited to 'library/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js') diff --git a/library/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js b/library/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js deleted file mode 100644 index 7ee4bf040..000000000 --- a/library/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js +++ /dev/null @@ -1,27 +0,0 @@ -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); -- cgit v1.2.3