Ticket #1436 (closed Bug: fixed)

Opened 12 months ago

Last modified 11 months ago

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

fckeditingarea.js (11.0 kB) - added by sojweb 12 months ago.
Change FCKEditingArea.prototype.Focus behavior for Safari

Change History

Changed 12 months ago by sojweb

Change FCKEditingArea.prototype.Focus behavior for Safari

Changed 12 months 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?

Changed 11 months 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.