editor.js 394 B

123456789101112131415161718
  1. //[editor Javascript]
  2. //Project: Riday Admin - Responsive Admin Template
  3. //Primary use: Used only for the wysihtml5 Editor
  4. //Add text editor
  5. $(function () {
  6. "use strict";
  7. // Replace the <textarea id="editor1"> with a CKEditor
  8. // instance, using default configuration.
  9. CKEDITOR.replace('editor1')
  10. //bootstrap WYSIHTML5 - text editor
  11. $('.textarea').wysihtml5();
  12. });