updated elysia_cron, elfinder, metatag, libraries, email_registration, migrate, nodeform_cols
This commit is contained in:
16
sites/all/modules/contrib/dev/elysia_cron/js/elysia_cron.js
Normal file
16
sites/all/modules/contrib/dev/elysia_cron/js/elysia_cron.js
Normal file
@@ -0,0 +1,16 @@
|
||||
(function ($) {
|
||||
|
||||
Drupal.behaviors.elysiaCron = {
|
||||
attach: function (context, settings) {
|
||||
$('.ec-select').once().change(function () {
|
||||
if (this.value === 'custom') {
|
||||
var key = $(this).data('key');
|
||||
|
||||
$("#_ec_select_" + key).hide();
|
||||
$("#_ec_custom_" + key).show();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
})(jQuery);
|
Reference in New Issue
Block a user