0.1.4 • Published 6 years ago

ember-medium-editor v0.1.4

Weekly downloads
73
License
MIT
Repository
github
Last release
6 years ago

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.

API Docs

Licence

MIT