17 lines
371 B
JavaScript
Executable File
17 lines
371 B
JavaScript
Executable File
(function ($) {
|
|
|
|
/**
|
|
* Attach auto-submit to admin view form.
|
|
*/
|
|
Drupal.behaviors.feedbackAdminForm = {
|
|
attach: function (context) {
|
|
$('#feedback-admin-view-form', context).once('feedback', function () {
|
|
$(this).find('fieldset.feedback-messages :input[type="checkbox"]').click(function () {
|
|
this.form.submit();
|
|
});
|
|
});
|
|
}
|
|
};
|
|
|
|
})(jQuery);
|