Ticket #20131 (confirmed Bug)

Opened 17 months ago

Last modified 11 months ago

TinyMCE link features are broken on Plone 4.3.3 + IE11

Reported by: keul Owned by:
Priority: critical Milestone: 4.x
Component: Visual Editor Version: 4.3
Keywords: Cc: keul

Description

I'm testing TinyMCE 1.3.7 (and 1.3.8 unrelesed) with Internet Explorer 11.

Adding links feature is broken. After closing the overlay no new link is created in HTML. Adding a file directly in the overlay works (file is added) but again selecting the new file will lead to nothing.


PS: tried to search for this bug before opening the issue, but finding something with all the spam we have not is not simple :(

Change History

comment:1 Changed 17 months ago by keul

  • Status changed from new to confirmed
  • Summary changed from TinyMCE link features are broken on Plone 4.3.3 + IE 11 to TinyMCE link features are broken on Plone 4.3.3 + IE11

Fixing it in the same way discussed on #11690 works. If I force compatibility mode to IE10, all is ok.

Change done on main_template.pt:

    tal:define="...
                ...
                isAnon portal_state/anonymous;
                dummy python:request.RESPONSE.setHeader('X-UA-Compatible', isAnon and 'IE=edge,chrome=1' or 'IE=10,chrome=1');"
Last edited 17 months ago by keul (previous) (diff)

comment:2 Changed 11 months ago by maethu

I created a pull request on github for the the Products.TinyMCE 1.3.x branch -->  https://github.com/plone/Products.TinyMCE/pull/94 I added details to the PR itself. In Short - it add's IE support / using tinymce 3.5.11 - but needs testing.

Note: See TracTickets for help on using tickets.