Clean up Quill Component

Fixes #54
This commit is contained in:
Matthew Dillon 2015-11-13 08:29:48 -07:00
parent 305c108825
commit bb05e114d7

View file

@ -1,13 +1,25 @@
import Ember from 'ember';
/* global Quill */
export default Ember.Component.extend({
quill: null,
const { Component } = Ember;
export default Component.extend({
// Passed in
value: null,
update: null,
// Internal
quill: null,
didReceiveAttrs() {
this._super(...arguments);
if (!this.attrs.update) {
throw new Error(`You must provide an \`update\` action.`);
}
},
didInsertElement: function() {
let quill = new Quill(`#${this.get('elementId')} .editor`, {
const quill = new Quill(`#${this.get('elementId')} .editor`, {
formats: ['bold', 'italic', 'underline'],
modules: {
'toolbar': { container: `#${this.get('elementId')} .toolbar` }