Opened 8 years ago

Closed 8 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

  1. Add some text having '@' (Say Hello@xyz)
  2. 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 8 years ago by Thiruvenkata Subramanian

Is there a possible way to restrict this behaviour

comment:2 Changed 8 years ago by Jakub Ś

Resolution: duplicate
Status: newclosed
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);
});	
Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy