elysia_cron.js 352 B

12345678910111213141516
  1. (function ($) {
  2. Drupal.behaviors.elysiaCron = {
  3. attach: function (context, settings) {
  4. $('.ec-select').once().change(function () {
  5. if (this.value === 'custom') {
  6. var key = $(this).data('key');
  7. $("#_ec_select_" + key).hide();
  8. $("#_ec_custom_" + key).show();
  9. }
  10. });
  11. }
  12. }
  13. })(jQuery);