Free and Open source Web Builder Framework. Next generation tool for building templates without coding
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
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));
}
});