You are here

function dc_ajax_add_cart_popup_form_commerce_order_item_dc_ajax_add_cart_form_alter in Commerce Ajax Add to Cart 8

Implements hook_form_BASE_FORM_ID_alter().

File

modules/dc_ajax_add_cart_popup/dc_ajax_add_cart_popup.module, line 26
Display a modal popup after a product is added to the cart with AJAX.

Code

function dc_ajax_add_cart_popup_form_commerce_order_item_dc_ajax_add_cart_form_alter(&$form, &$form_state, $form_id) {
  $form['#attached']['library'][] = 'core/drupal.dialog.ajax';
  $form['actions']['submit']['#ajax']['disable-refocus'] = TRUE;
}