summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/ui/site/EditSubscriptionModal.js
blob: 1b3b859fc8a92957d2c806f4e26ce0ee5be28bda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var EditSubscriptionModal = ModalFormView.extend({
	el: ".mediaDrawer.editSubscription",
	action: "/api/subscription",
	method: "put",
	
	fixedClose: true,
	
	events: {
	  "click [data-role='changePasswordToggle']": 'togglePasswordFields'
	},

	load: function(){
		this.reset()
		$.get("/api/subscription", function(data){

			this.show()
		}.bind(this))
	},

})