CKEditor instance and the link plugin can be seen here and clicking the '+' symbol near the top of the table.
I'm using the link plugin, and I used the following code to disable the linkType box:
if ( dialogName == 'link' ) {
var infoTab = dialogDefinition.getContents( 'info' );
infoTab.remove( 'linkType' );
}
For some reason, I'm receiving the following error in console when I try to add a new link in the URL field: Uncaught TypeError: Failed to execute 'insertBefore' on 'Node': parameter 1 is not of type 'Node'
Anyone know why I'm receiving this error?