You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
621 B
23 lines
621 B
(function () {
|
|
|
|
// register plugin
|
|
CKEDITOR.plugins.add('blockimagepaste', {
|
|
|
|
init: function (editor) {
|
|
|
|
editor.on( 'paste', function(e) {
|
|
|
|
var html = e.data.dataValue;
|
|
if (!html) return;
|
|
|
|
// Replace data: images in Firefox and upload them
|
|
e.data.dataValue = html.replace( /<img( [^>]*)?>/gi, function( img ) {
|
|
alert('Pasting images directly into the editor is not allowed. ');
|
|
return '';
|
|
});
|
|
});
|
|
|
|
}
|
|
});
|
|
|
|
})(); |