Active
Project:
YUI Rich Text Editor
Version:
5.x-2.6-96
Component:
User interface
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Oct 2009 at 21:48 UTC
Updated:
5 Oct 2009 at 21:50 UTC
This only happens on IE8. My workaround was to change line 69 of yui_editor.js to use a link instead of a button:
$("#"+id).after("Switch to Plain Editor");
The stylesheet makes the link still look like a button, so all was good after that.
Comments
Comment #1
ablondeau commentedThe code above should be
$("#"+id).after("<a href=\"#\" id=\"toggleEditor-"+id+"\">Switch to Plain Editor</a>");