Version Description
Download this release
Release Info
Developer | jakemgold |
Plugin | MCE Table Buttons |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.0.1
- mce-table/js/table.js +1 -1
- mce_table_buttons.php +1 -1
- readme.txt +9 -3
mce-table/js/table.js
CHANGED
@@ -270,7 +270,7 @@ function init() {
|
|
270 |
|
271 |
var cols = 2, rows = 2, border = tinyMCEPopup.getParam('table_default_border', '0'), cellpadding = tinyMCEPopup.getParam('table_default_cellpadding', ''), cellspacing = tinyMCEPopup.getParam('table_default_cellspacing', '');
|
272 |
var align = "", width = "", height = "", bordercolor = "", bgcolor = "", className = "";
|
273 |
-
var id = "", summary = "", style = "", dir = "", lang = "", background = "", bgcolor = "", bordercolor = "", rules, frame;
|
274 |
var inst = tinyMCEPopup.editor, dom = inst.dom;
|
275 |
var formObj = document.forms[0];
|
276 |
var elm = dom.getParent(inst.selection.getNode(), "table");
|
270 |
|
271 |
var cols = 2, rows = 2, border = tinyMCEPopup.getParam('table_default_border', '0'), cellpadding = tinyMCEPopup.getParam('table_default_cellpadding', ''), cellspacing = tinyMCEPopup.getParam('table_default_cellspacing', '');
|
272 |
var align = "", width = "", height = "", bordercolor = "", bgcolor = "", className = "";
|
273 |
+
var id = "", summary = "", style = "", dir = "", lang = "", background = "", bgcolor = "", bordercolor = "", rules = "", frame = "";
|
274 |
var inst = tinyMCEPopup.editor, dom = inst.dom;
|
275 |
var formObj = document.forms[0];
|
276 |
var elm = dom.getParent(inst.selection.getNode(), "table");
|
mce_table_buttons.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: MCE Table Buttons
|
4 |
Plugin URI: http://www.cmurrayconsulting.com/software/wordpress-mce-table-buttons/
|
5 |
Description: Add <strong>buttons for table editing</strong> to the WordPress WYSIWYG editor with this very <strong>light weight</strong> plug-in.
|
6 |
-
Version: 1.0
|
7 |
Author: Jacob M Goldman (C. Murray Consulting)
|
8 |
Author URI: http://www.cmurrayconsulting.com
|
9 |
|
3 |
Plugin Name: MCE Table Buttons
|
4 |
Plugin URI: http://www.cmurrayconsulting.com/software/wordpress-mce-table-buttons/
|
5 |
Description: Add <strong>buttons for table editing</strong> to the WordPress WYSIWYG editor with this very <strong>light weight</strong> plug-in.
|
6 |
+
Version: 1.0.1
|
7 |
Author: Jacob M Goldman (C. Murray Consulting)
|
8 |
Author URI: http://www.cmurrayconsulting.com
|
9 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Jacob M Goldman (C. Murray Consulting)
|
|
3 |
Donate link: http://www.cmurrayconsulting.com/software/wordpress-mce-table-buttons/
|
4 |
Tags: tables, editor, WYSIWYG, buttons
|
5 |
Requires at least: 2.8
|
6 |
-
Tested up to: 2.8.
|
7 |
-
Stable tag: 1.0
|
8 |
|
9 |
Adds table editing buttons to a new, third row in the WordPress WYSIWYG editor.
|
10 |
|
@@ -33,4 +33,10 @@ update.
|
|
33 |
|
34 |
== Screenshots ==
|
35 |
|
36 |
-
1. The editor with the new table editing controls.
|
|
|
|
|
|
|
|
|
|
|
|
3 |
Donate link: http://www.cmurrayconsulting.com/software/wordpress-mce-table-buttons/
|
4 |
Tags: tables, editor, WYSIWYG, buttons
|
5 |
Requires at least: 2.8
|
6 |
+
Tested up to: 2.8.6
|
7 |
+
Stable tag: 1.0.1
|
8 |
|
9 |
Adds table editing buttons to a new, third row in the WordPress WYSIWYG editor.
|
10 |
|
33 |
|
34 |
== Screenshots ==
|
35 |
|
36 |
+
1. The editor with the new table editing controls.
|
37 |
+
|
38 |
+
== Changelog ==
|
39 |
+
|
40 |
+
=1.0.1=
|
41 |
+
|
42 |
+
Fixed issue with WebKit browsers (Safari and Chrome) - TinyMCE bug
|