| 12345678910111213141516 | 
							- (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);
 
 
  |