summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/ui/NewProjectModal.js
blob: cf2044fcbda5929ce0491bcd861895c5cd227f3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var NewProjectModal = ModalFormView.extend({
	el: ".mediaDrawer.newProject",
	action: "/project/new",

	load: function(){
		this.reset()
		this.show()
	},
	
	success: function(){
		//
	}

})