Project

General

Profile

Bug #24674 » rtehtmlarea_bugfix_17156_typo3_4-4.patch

Administrator Admin, 2011-01-20 05:42

View differences:

typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/table-operations.js (copie de travail)
* This function gets called when the toolbar is being updated
*/
onUpdateToolbar: function (button, mode, selectionEmpty, ancestors) {
if (mode === 'wysiwyg' && this.editor.isEditable() && button.itemId === 'TO-toggle-borders') {
button.setInactive(!HTMLArea._hasClass(this.editor._doc.body, 'htmlarea-showtableborders'));
if (mode === 'wysiwyg' && this.editor.isEditable()) {
switch (button.itemId) {
case 'TO-toggle-borders':
button.setInactive(!HTMLArea._hasClass(this.editor._doc.body, 'htmlarea-showtableborders'));
break;
case 'TO-cell-merge':
if (Ext.isGecko) {
var selection = this.editor._getSelection();
button.setDisabled(button.disabled || selection.rangeCount < 2);
}
break;
}
}
},
/*
(2-2/2)