prod-check.js 543 B

12345678910111213141516171819
  1. (function ($) {
  2. // Prod check settings page styling.
  3. Drupal.behaviors.prod_check = {
  4. attach: function(context, settings) {
  5. $('#edit-prod-check-module-list-time', context).mask('99:99');
  6. $('#prod-check-settings', context).equalHeights('px');
  7. $('#prod-check-settings', context).equalWidths('px');
  8. $('#prod-check-nagios', context).change(function() {
  9. $('#prod-check-settings', context).equalHeights('px');
  10. $('#prod-check-settings', context).equalWidths('px');
  11. });
  12. }
  13. };
  14. })(jQuery);