UNPKG

grapesjs_codeapps

Version:

Free and Open Source Web Builder Framework/SC Modification

16 lines (13 loc) 286 B
import Backbone from 'backbone'; var Frame = require('./Frame'); module.exports = Backbone.Model.extend({ defaults: { frame: '', wrapper: '', rulers: false }, initialize(config) { var conf = this.conf || {}; this.set('frame', new Frame(conf.frame)); } });