Guest
Public paste!

fredck

By: a guest | Jan 11th, 2010 | Syntax: JavaScript | Size: 0.15 KB | Hits: 571 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. CKEDITOR.replace( 'editor1',
  2.         {
  3.                 on :
  4.                 {
  5.                         paste : function( ev )
  6.                         {
  7.                                 ev.data.html = '<h1>Test!!!</h1>' + ev.data.html;
  8.                         }
  9.                 }
  10.         });