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)) }, })