var DestroyAccountView = View.extend({ el: "#destroy_account_view", events: { "click .go_destroy_account": "go_destroy", }, initialize: function(){ }, show: function(){ document.body.className = "destroy_account_view" app.footer.hide() }, hide: function(){ }, go_destroy: function(e){ e.preventDefault() e.stopPropagation() app.router.go("account/logout") window.open("https://www.stoneisland.com/us/customercare/contact-us", '_system') }, })