Opened 17 years ago
Closed 17 years ago
#1436 closed Bug (fixed)
Safari : Sub-menus panels are not being hidden
Reported by: | Frederico Caldeira Knabben | 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 (1)
Change History (3)
Changed 17 years ago by
Attachment: | fckeditingarea.js added |
---|
comment:1 Changed 17 years ago by
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 17 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
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.
Change FCKEditingArea.prototype.Focus behavior for Safari