summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/ui/builder/BuilderView.js
blob: d0659bb7af7808560a37e1e228add67bdf3b0dfb (plain)
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()
	},

})