Projet

Général

Profil

Paste
Télécharger (247 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / commerce / modules / payment / commerce_payment.js @ 9d13637e

1
;(function($) {
2

    
3
  /**
4
   * Automatically submit the payment redirect form.
5
   */
6
  Drupal.behaviors.commercePayment = {
7
    attach: function (context, settings) {
8
      $('div.payment-redirect-form form', context).submit();
9
    }
10
  }
11
})(jQuery);