parent
305c108825
commit
bb05e114d7
1 changed files with 16 additions and 4 deletions
|
@ -1,13 +1,25 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
/* global Quill */
|
/* global Quill */
|
||||||
|
|
||||||
export default Ember.Component.extend({
|
const { Component } = Ember;
|
||||||
quill: null,
|
|
||||||
|
export default Component.extend({
|
||||||
|
// Passed in
|
||||||
value: null,
|
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() {
|
didInsertElement: function() {
|
||||||
let quill = new Quill(`#${this.get('elementId')} .editor`, {
|
const quill = new Quill(`#${this.get('elementId')} .editor`, {
|
||||||
formats: ['bold', 'italic', 'underline'],
|
formats: ['bold', 'italic', 'underline'],
|
||||||
modules: {
|
modules: {
|
||||||
'toolbar': { container: `#${this.get('elementId')} .toolbar` }
|
'toolbar': { container: `#${this.get('elementId')} .toolbar` }
|
||||||
|
|
Reference in a new issue