Opened 9 years ago
Closed 9 years ago
#14674 closed Bug (duplicate)
Adding '@' in word or a Sentence It is converted as a Hyperlink
| Reported by: | Thiruvenkata Subramanian | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | General | Version: | |
| Keywords: | Cc: |
Description
Steps to reproduce
- Add some text having '@' (Say Hello@xyz)
- Give a Space
Expected result
It should not changed to Hyperlink
Actual result
It is converted as a Hyperlink
Other details (browser, OS, CKEditor version, installed plugins)
Browser - IE - 11
Change History (2)
comment:1 Changed 9 years ago by
comment:2 Changed 9 years ago by
| Resolution: | → duplicate |
|---|---|
| Status: | new → closed |
| Version: | 4.5.10 (GitHub - master) |
DUP of #6307
Something like below should disable autolinks in IE9+.
var editor = CKEDITOR.replace( 'editor1', {});
//disable IE autolink in IE9+
editor.on( 'contentDom', function( evt ){
evt.editor.document.$.execCommand("AutoUrlDetect", false, false);
});

Is there a possible way to restrict this behaviour