| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 2 | <!-- |
|---|
| 3 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. |
|---|
| 4 | For licensing, see LICENSE.html or http://ckeditor.com/license |
|---|
| 5 | --> |
|---|
| 6 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 7 | <head> |
|---|
| 8 | <title>Problem typing Japanese characters into the editor</title> |
|---|
| 9 | <meta content="text/html; charset=utf-8" http-equiv="content-type" /> |
|---|
| 10 | |
|---|
| 11 | <!--Include CKEditor Version 3.6.5 - This does not work --> |
|---|
| 12 | <script type="text/javascript" src="http://rev.ckeditor.com/ckeditor/trunk/7664/ckeditor.js"></script> |
|---|
| 13 | |
|---|
| 14 | <!--Include CKEditor Version 4.0 - This works properly --> |
|---|
| 15 | <!--<script type="text/javascript" src="http://nightly.ckeditor.com/3998/ckeditor.js"></script>--> |
|---|
| 16 | |
|---|
| 17 | </head> |
|---|
| 18 | <body> |
|---|
| 19 | <h1>Problem typing Japanese characters into CKEditor</h1> |
|---|
| 20 | |
|---|
| 21 | <p> |
|---|
| 22 | This is just a basic editor instance that uses <code>startupFocus : true</code>. |
|---|
| 23 | </p> |
|---|
| 24 | <textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> |
|---|
| 25 | <script type="text/javascript"> |
|---|
| 26 | CKEDITOR.replace( 'editor1', {startupFocus : true} ); |
|---|
| 27 | </script> |
|---|
| 28 | </p> |
|---|
| 29 | </body> |
|---|
| 30 | </html> |
|---|