Projet

Général

Profil

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

root / htmltest / sites / all / modules / fivestar / js / fivestar.ajax.js @ dc45a079

1
/**
2
 * Create a degradeable star rating interface out of a simple form structure.
3
 */
4
(function($){ // Create local scope.
5

    
6
Drupal.ajax.prototype.commands.fivestarUpdate = function (ajax, response, status) {
7
  response.selector = $('.fivestar-form-item', ajax.element.form);
8
  ajax.commands.insert(ajax, response, status);
9
};
10

    
11
})(jQuery);