• Stars
    star
    107
  • Rank 316,906 (Top 7 %)
  • Language
    Ruby
  • Created about 11 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Morrigan jQuery Editor

Morrigan Editor is jQuery WYSIWYG editor with predictable behavior, persistence and consistency.

Demo

To install Morrigan Editor:

You can install Morrigan Editor manually or by gem if you are using Ruby on Rails (installation manual for RoR is available here).

$(function() {
  editor = $('#editor').morrigan_editor( {
    iframeStyles: '/iframe.css',
    imageUpload:'/image/create',
    width:'770px',
    height:'550px'
  } );
});

For Image Upload

Pass param imageUpload to init options:

  $('#editor').morrigan_editor( {
    //...
    imageUpload:'/image/create',
    //...
  } );

Params sending to server sample:

  • upload_img (with image) for file uploading
  • upload_url (with url) for image uploading by URL

Server response sample (for both cases):

  {data: "/url/to/image.jpeg"}

How to use

To get html from editor:

  editor.morrigan_editor('html');

To insert html to editor:

  editor.morrigan_editor('html', '<p>Your HTML</p>');