Bug #22879 » rtehtmlarea.patch
typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (working copy) | ||
---|---|---|
} else if (iframe.contentWindow && !Ext.isWebKit && (!iframe.contentWindow.document || !iframe.contentWindow.document.documentElement)) {
|
||
this.initializeIframe.defer(50, this);
|
||
// Safari
|
||
} else if (!iframe.contentDocument.documentElement || !iframe.contentDocument.body) {
|
||
this.initializeIframe.defer(50, this);
|
||
} else if (Ext.isWebKit) {
|
||
if (!iframe.contentDocument.documentElement || !iframe.contentDocument.body) {
|
||
this.initializeIframe.defer(50, this);
|
||
}
|
||
} else {
|
||
this.document = iframe.contentWindow ? iframe.contentWindow.document : iframe.contentDocument;
|
||
this.getEditor().document = this.document;
|
typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/table-operations.js (working copy) | ||
---|---|---|
autoDestroy: true,
|
||
fields: [ { name: 'text'}, { name: 'value'}, { name: 'style'} ],
|
||
data: [[this.localize('No block style'), 'none']]
|
||
}),
|
||
})
|
||
}, {
|
||
tpl: '<tpl for="."><div ext:qtip="{value}" style="{style}text-align:left;font-size:11px;" class="x-combo-list-item">{text}</div></tpl>'
|
||
}, this.configDefaults['combo']
|
typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultImage/default-image.js (working copy) | ||
---|---|---|
]
|
||
}),
|
||
hidden: this.removeItems.test('align'),
|
||
hideLabel: this.removeItems.test('align'),
|
||
hideLabel: this.removeItems.test('align')
|
||
}, this.configDefaults['combo'])
|
||
,{
|
||
itemId: 'border',
|