Server IP : 66.29.132.124 / Your IP : 3.144.255.198 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/resources/ckeditor/tests/manual/ |
Upload File : |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>CKEditor 5 – classic editor build – global variable test</title> <style> body { max-width: 800px; margin: 20px auto; } </style> </head> <body> <h1>CKEditor 5 – classic editor build – global variable test</h1> <h2>In the default language</h2> <div id="editor"> <h2>About CKEditor 5</h2> <p>This is <a href="https://ckeditor.com">CKEditor 5</a>.</p> </div> <h2>In German</h2> <div id="editor-de"> <h2>About CKEditor 5</h2> <p>This is <a href="https://ckeditor.com">CKEditor 5</a>.</p> </div> <script src="../../build/ckeditor.js"></script> <script src="../../build/translations/de.js"></script> <script> ClassicEditor.create( document.querySelector( '#editor' ) ) .then( editor => { window.editor = editor; } ) .catch( err => { console.error( err.stack ); } ); ClassicEditor .create( document.querySelector( '#editor-de' ), { language: 'de' } ) .then( editor => { window.editor = editor; } ) .catch( err => { console.error( err.stack ); } ); </script> </body> </html>