/source/Plug-in/kind/examples/custom-theme.html
http://prosporous.googlecode.com/ · HTML · 33 lines · 33 code · 0 blank · 0 comment · 0 complexity · a34167356c5a11fb8d19881d7786c2f5 MD5 · raw file
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>Custom Theme Examples</title>
- <style>
- form {
- margin: 0;
- }
- textarea {
- display: block;
- }
- </style>
- <script charset="utf-8" src="../kindeditor-min.js"></script>
- <script charset="utf-8" src="../lang/zh_CN.js"></script>
- <script>
- KindEditor.ready(function(K) {
- K.create('#content1', {
- themeType : 'default'
- });
- K.create('#content2', {
- themeType : 'simple'
- });
- });
- </script>
- </head>
- <body>
- <h3>????</h3>
- <textarea id="content1" name="content" style="width:700px;height:200px;visibility:hidden;"></textarea>
- <h3>????</h3>
- <textarea id="content2" name="content" style="width:700px;height:200px;visibility:hidden;"></textarea>
- </body>
- </html>