Ticket #1436 (closed Bug: fixed)
Safari : Sub-menus panels are not being hidden
| Reported by: | fredck | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | Safari Compatibility |
| Component: | UI : Context Menu | Version: | FCKeditor 2.5 Beta |
| Keywords: | Confirmed | Cc: |
Description
When using sub-menus in the context menu, like table operations, when choosing one of the sub-menu options, its panel is not being hidden and remains visible. It's enough to click in the editing area to hide it.
Attachments
Change History
Changed 6 years ago by sojweb
- Attachment fckeditingarea.js added
comment:1 Changed 6 years ago by sojweb
If I change:
this.IFrame.focus();
to:
this.Window.focus();
Under the FCKEditingArea.prototype.Focus definition, that seems to fix it. Are there ramifications in doing so?
comment:2 Changed 6 years ago by fredck
- Status changed from new to closed
- Resolution set to fixed
Fixed with #1095.
We were previously using the IFrame.focus() call for Safari only, because that was the only way to make it work on it. It seams the window.focus() has been fixed at Apple's side, so we can now live without the hack.
Note: See
TracTickets for help on using
tickets.

Change FCKEditingArea.prototype.Focus behavior for Safari