Bug #24091 » rtehtmlarea_bugfix_16431_typo3_4-4_follow_up_2.patch
typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (copie de travail) | ||
---|---|---|
/*
|
||
* Handler for mouse events
|
||
*/
|
||
onMouse: function () {
|
||
onMouse: function (event, target) {
|
||
// In WebKit, select the image when it is clicked
|
||
if (Ext.isWebKit && /^(img)$/i.test(target.nodeName)) {
|
||
if (Ext.isWebKit && /^(img)$/i.test(target.nodeName) && event.browserEvent.type == 'click') {
|
||
this.getEditor().selectNode(target);
|
||
}
|
||
this.getToolbar().updateLater.delay(100);
|
- « Previous
- 1
- …
- 3
- 4
- 5
- Next »