grapesjs-clot
Version:
Free and Open Source Web Builder Framework
21 lines (17 loc) • 539 B
JavaScript
import Backbone from 'backbone';
export default Backbone.View.extend({
tagName: 'style',
initialize(o = {}) {
this.config = o.config || {};
const { model } = this;
this.listenTo(model, 'change', this.render);
this.listenTo(model, 'destroy remove', this.remove);
this.listenTo(model.get('selectors'), 'change', this.render);
},
render() {
const { model, el } = this;
const important = model.get('important');
el.innerHTML = model.toCSS({ important });
return this;
}
});