acquia_commercemanager-8.x-1.122/modules/acm_customer/js/views/AddressesPageView.js
modules/acm_customer/js/views/AddressesPageView.js
/**
* @file
* Renders a AddressesPageView.
*/
(function($, _, Backbone, Drupal) {
'use strict';
Drupal.acm_customer = Drupal.acm_customer || {};
Drupal.acm_customer.Views = Drupal.acm_customer.Views || {};
Drupal.acm_customer.Views.AddressesPageView = Drupal.acm_customer.Views.BaseCustomerPageView.extend(/** @lends Drupal.acm_customer.Views.AddressesPageView# */{
/**
* @type {jQuery}
*/
el: $('.customer-addresses-form-wrapper'),
/**
* @type {object}
*/
additionalEvents: {
'click .customer-address a': 'redirectToPage',
}
});
}(jQuery, _, Backbone, Drupal));
