Ticket #6032: 6032.patch
File 6032.patch, 662 bytes (added by , 13 years ago) |
---|
-
_source/plugins/wysiwygarea/plugin.js
483 483 } ); 484 484 } 485 485 486 // Prevent the browser opening links in read-only blocks. (#6032) 487 domDocument.on( 'click', function( ev ) 488 { 489 ev = ev.data; 490 if ( ev.getTarget().is( 'a' ) && ev.$.button != 2 ) 491 ev.preventDefault(); 492 }); 493 486 494 // Webkit: avoid from editing form control elements content. 487 495 if ( CKEDITOR.env.webkit ) 488 496 {