Opened 14 years ago
Closed 14 years ago
#6712 closed Bug (fixed)
Incorrect style set in wysiwygarea plugin.js
Reported by: | Tony | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.4.2 |
Keywords: | Cc: |
Description
ckeditor/_source/plugins/wysiwygarea/plugin.js
Line 1,029
'<span tabindex="-1" style="position:absolute; left:-10000" role="presentation"></span>' ) );
Should be :
'<span tabindex="-1" style="position:absolute; left:-10000px" role="presentation"></span>' ) );
No? (px missing from the "left" style attribute.)
Actually that style could be just removed, fixed with [6109].