2008-02-13 Stanislas Rolland <stanislas.rolland@fructifor.ca>
* Fixed bug #7232: htmlArea RTE: In IE, selecting words with CTRL+SHIFT+Left doesn't activate "link" button
+ * Fixed bug #7525: htmlArea RTE: Page TSConfig property toggleborders.setOnTableCreation not honored
2008-02-13 Benjamin Mack <mack@xnos.org>
2008-02-13 Stanislas Rolland <stanislas.rolland@fructifor.ca>
* Fixed bug #7232: htmlArea RTE: In IE, selecting words with CTRL+SHIFT+Left doesn't activate "link" button
+ * Fixed bug #7525: htmlArea RTE: Page TSConfig property toggleborders.setOnTableCreation not honored
2008-02-11 Stanislas Rolland <stanislas.rolland@fructifor.ca>
this.dialogRowCellProperties(true);
break;
case "TO-toggle-borders":
- this.toogleBorders();
+ this.toggleBorders();
break;
default:
alert("Button [" + buttonId + "] not yet implemented");
}
editor.focusEditor();
editor.insertNodeAtSelection(table);
+ if (this.buttonsConfiguration.toggleborders && this.buttonsConfiguration.toggleborders.setOnTableCreation) {
+ this.toggleBorders();
+ }
return true;
},
- toogleBorders : function () {
+ toggleBorders : function () {
var tables = this.editor._doc.getElementsByTagName("table");
if (tables.length != 0) {
this.editor.borders = true;