Ticket #10106: 10106.html

File 10106.html, 871 bytes (added by Olek Nowodziński, 11 years ago)

Sample to reproduce

Line 
1<!DOCTYPE html>
2<!--
3Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
4For licensing, see LICENSE.html or http://ckeditor.com/license
5-->
6<html>
7<head>
8        <title>#10106</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                <a href="index.html">#10106
16        </h1>
17        <textarea cols="80" id="editor1" name="editor1" rows="10">
18                <p dir="ltr" style="WTF">This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
19        </textarea>
20        <script>
21
22                CKEDITOR.replace( 'editor1', {
23                        language: 'ar',
24                        extraPlugins: 'sourcedialog',
25                        removePlugins: 'sourcearea',
26                        on: {
27                                instanceReady: function () {
28                                        this.execCommand( 'sourcedialog' );
29                                }
30                        },
31                        width: '600'
32                } );
33
34        </script>
35</body>
36</html>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy