Initial Commit N° : 001 - V.4.3.3

This commit is contained in:
2025-03-28 14:32:57 +01:00
commit 238e5d7999
809 changed files with 371149 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
jQuery(document).ready(function($){
"use strict";
$('body').on('nasa_admin_init_select2', function() {
if ($('select.nasa-ad-select2:not(.nasa-inited)').length) {
$('select.nasa-ad-select2:not(.nasa-inited)').each(function() {
$(this).addClass('nasa-inited');
$(this).select2();
});
}
}).trigger('nasa_admin_init_select2');
/* =============== End document ready !!! ================== */
});