You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice that the edit shortcut didn't work like Chrome and Firefox
Click on the editor
repeat step 3
Note that edit mode finally fires.
As with Firefox, this probably has to do with the fact no focus is on that iframe when you switch. In the edit() and preview() code I have self.editorIframe.focus() and self.previewerIframe.focus() respectively which fixed Firefox, but apparently not IE9.
The text was updated successfully, but these errors were encountered:
…getting
focus to work across browsers. This also fixes the problem with IE9/10 where
the shortcuts only worked the first time and you had to click into the editor
to get them to work again.
To do: docs and tests
… Removed
is() support since it was turning out to be too much work. It's now it's own
ticket (#229).
This fixes the IE9/10 issue where the editor was not focused so you could
keep typing after switching over to the preview() (through clicking the icons
or doing a key command).
To reproduce:
alt+p
to previewalt+o
to editAs with Firefox, this probably has to do with the fact no focus is on that iframe when you switch. In the
edit()
andpreview()
code I haveself.editorIframe.focus()
andself.previewerIframe.focus()
respectively which fixed Firefox, but apparently not IE9.The text was updated successfully, but these errors were encountered: