From 18240a9201d193a5a2420f8644fa05b7bfbceeec Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Fri, 18 Jul 2008 10:59:01 -0400 Subject: [PATCH] - Updated TinyMCE to version 3.1.0.1 --- program/js/tiny_mce/plugins/table/js/table.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/program/js/tiny_mce/plugins/table/js/table.js b/program/js/tiny_mce/plugins/table/js/table.js index 768c26e..a8e112c 100644 --- a/program/js/tiny_mce/plugins/table/js/table.js +++ b/program/js/tiny_mce/plugins/table/js/table.js @@ -46,13 +46,13 @@ // Validate table size if (colLimit && cols > colLimit) { - alert(inst.getLang('table_col_limit', '', true, {cols : colLimit})); + inst.windowManager.alert(inst.getLang('table_dlg.col_limit').replace(/\{\$cols\}/g, colLimit)); return false; } else if (rowLimit && rows > rowLimit) { - alert(inst.getLang('table_row_limit', '', true, {rows : rowLimit})); + inst.windowManager.alert(inst.getLang('table_dlg.row_limit').replace(/\{\$rows\}/g, rowLimit)); return false; } else if (cellLimit && cols * rows > cellLimit) { - alert(inst.getLang('table_cell_limit', '', true, {cells : cellLimit})); + inst.windowManager.alert(inst.getLang('table_dlg.cell_limit').replace(/\{\$cells\}/g, cellLimit)); return false; } -- Gitblit v1.9.1