root / htmltest / sites / all / modules / fivestar / js / fivestar.ajax.js @ a5572547
1 | 85ad3d82 | Assos Assos | /**
|
---|---|---|---|
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); |