1 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
2 | <head> |
---|
3 | <title>#5892 - Test Page</title> |
---|
4 | <meta content="text/html; charset=utf-8" http-equiv="content-type" /> |
---|
5 | <script type="text/javascript" src="../ckeditor.js"></script> |
---|
6 | </head> |
---|
7 | <body> |
---|
8 | <p> |
---|
9 | <textarea cols="80" id="editor1" name="editor1" rows="10"> |
---|
10 | <p>This is a paragraph test</p> |
---|
11 | <p>This is another paragraph test</p> |
---|
12 | </textarea> |
---|
13 | <script type="text/javascript"> |
---|
14 | CKEDITOR.replace( 'editor1', |
---|
15 | { |
---|
16 | on : { |
---|
17 | paste : function( ev ) { |
---|
18 | alert("paste"); |
---|
19 | } |
---|
20 | } |
---|
21 | }); |
---|
22 | </script> |
---|
23 | </p> |
---|
24 | </body> |
---|
25 | </html> |
---|