Opened 8 years ago
Closed 8 years ago
#16909 closed Bug (invalid)
CKeditor toolbar events are not working in Microsoft edge browser
Reported by: | Sibasish palo | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | UI : Toolbar | Version: | |
Keywords: | Cc: |
Description
Steps to reproduce
- setup ckeditor out of the box
- open the page in Microsoft edge browser
- type some text and try to make it bold
below is the code i used to setup OOB ckeditor 4.6.2
<html> <head>
<title>Sample - CKEditor</title> <script type="text/javascript" src="C:/Users/user1/Desktop/New folder/ckeditor_462/ckeditor.js"></script>
</head> <body>
<form>
<p>
My Editor:<br /> <textarea name="editor1"><p>Initial value.</p></textarea> <script type="text/javascript">
CKEDITOR.replace( 'editor1' ); CKEDITOR.config.width = "800";
</script>
</p>
</form>
</body> </html>
Expected result
Word should get bold
Actual result
None of the toolbar actions are working
getting below error on clicking on the editor area
Unable to get property 'specified' of undefined or null reference at
case "contenteditable":case "contentEditable":return this.$.attributes.getNamedItem("contentEditable").specified?this.$.getAttribute("contentEditable"):null}
Other details (browser, OS, CKEditor version, installed plugins)
windows10 , Microsoft Edge browser
Change History (1)
comment:1 Changed 8 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Version: | 4.6.2 |
CKEditor works without the problem on Edge what can be verified on our demo page which uses that version.
NOTE: CKEditor should be run from server and not locally form file system.