1 | <!DOCTYPE html> |
---|
2 | <!-- |
---|
3 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. |
---|
4 | For licensing, see LICENSE.html or http://ckeditor.com/license |
---|
5 | --> |
---|
6 | <html> |
---|
7 | <head> |
---|
8 | <title>#10224</title> |
---|
9 | <meta charset="utf-8"> |
---|
10 | <script src="../ckeditor.js"></script> |
---|
11 | <link href="sample.css" rel="stylesheet"> |
---|
12 | </head> |
---|
13 | <body> |
---|
14 | <h1 class="samples"> |
---|
15 | #10224 |
---|
16 | </h1> |
---|
17 | <textarea cols="80" id="editor1" name="editor1" rows="10"> |
---|
18 | <p><a class="iLink" onclick="iLink(25)" title="test">test</a></p> |
---|
19 | </textarea> |
---|
20 | <script> |
---|
21 | |
---|
22 | CKEDITOR.replace( 'editor1', { |
---|
23 | plugins: 'wysiwygarea,toolbar,sourcearea', |
---|
24 | allowedContent: 'a(iLink)[!title,!onclick,href]' |
---|
25 | } ); |
---|
26 | |
---|
27 | </script> |
---|
28 | </body> |
---|
29 | </html> |
---|