12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
-
- if (CKEDITOR.env.ie && CKEDITOR.env.version < 9)
- CKEDITOR.tools.enableHtml5Elements(document);
- CKEDITOR.config.height = 150;
- CKEDITOR.config.width = "auto";
- var initSample = (function() {
- var wysiwygareaAvailable = isWysiwygareaAvailable(),
- isBBCodeBuiltIn = !!CKEDITOR.plugins.get("bbcode");
- return function() {
- var editorElement = CKEDITOR.document.getById("editor");
-
- if (isBBCodeBuiltIn) {
- editorElement.setHtml(
- "Hello world!\n\n" +
- "I'm an instance of [url=https://ckeditor.com]CKEditor[/url]."
- );
- }
-
- if (wysiwygareaAvailable) {
- CKEDITOR.replace("editor");
- } else {
- editorElement.setAttribute("contenteditable", "true");
- CKEDITOR.inline("editor");
-
-
- }
- };
- function isWysiwygareaAvailable() {
-
-
- if (CKEDITOR.revision == "%RE" + "V%") {
- return true;
- }
- return !!CKEDITOR.plugins.get("wysiwygarea");
- }
- })();
|