1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
var BuilderView = View.extend({ el: "#builderView", events: { }, initialize: function(){ this.toolbar = new BuilderToolbar ({ parent: this }) this.settings = new BuilderSettings ({ parent: this }) }, load: function(){ $("#map").show() }, })