Initial code of commit
This commit is contained in:
21
code/resources/views/themes/default1/ckeditor.blade.php
Normal file
21
code/resources/views/themes/default1/ckeditor.blade.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>A Simple Page with CKEditor</title>
|
||||
<!-- Make sure the path to CKEditor is correct. -->
|
||||
<script src="ckeditor/ckeditor.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<form>
|
||||
<textarea name="editor1" id="editor1" rows="10" cols="80">
|
||||
|
||||
</textarea>
|
||||
<script>
|
||||
// Replace the <textarea id="editor1"> with a CKEditor
|
||||
// instance, using default configuration.
|
||||
CKEDITOR.replace( 'editor1' );
|
||||
</script>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user