Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 1.42 KB

README.md

File metadata and controls

61 lines (43 loc) · 1.42 KB

ember-medium-editor Build Status Ember Observer Score npm version

medium-editor library for Ember Apps.

Installation

With ember:

  • ember install ember-medium-editor

With npm:

  • npm install --save-dev ember-medium-editor

With yarn:

  • yarn add --dev ember-medium-editor

Configuration

// ember-cli-build.js
let app = new EmberApp(defaults, {
  mediumEditor: {
    /**
    * If true will include only JS in the build.
    *
    * @type Boolean
    * @default false
    */
    excludeStyles: false,
    
    /**
    * List of themes: https://github.com/yabwe/medium-editor/tree/master/dist/css/themes
    *
    * @type String
    * @default 'default'
    */
    theme: 'default'
  }
});

Usage

{{medium-editor
    model.text
    options=(hash)
    onChange=(action (mut model.text))}}

Issues

If you encounter any issue please report it here.

Licence

MIT