Bug #23778 » patch_16045.diff
typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/table-operations.js (working copy) | ||
---|---|---|
for (var k = tableParts.length; --k >= 0;) rows[k] = [];
|
||
var row = null;
|
||
var cells = null;
|
||
if (Ext.isGecko) {
|
||
if (false && Ext.isGecko) {
|
||
try {
|
||
while (range = sel.getRangeAt(i++)) {
|
||
var td = range.startContainer.childNodes[range.startOffset];
|
||
... | ... | |
Ext.MessageBox.alert('', this.localize("Please click into some cell"));
|
||
break;
|
||
}
|
||
var tr = cell.parentElement;
|
||
var tr = cell.parentNode;
|
||
var no_cols = parseInt(prompt(this.localize("How many columns would you like to merge?"), 2));
|
||
if (!no_cols) break;
|
||
var no_rows = parseInt(prompt(this.localize("How many rows would you like to merge?"), 2));
|