10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
|
(function ($) {
|
||
|
$(document).ready(function () {
|
||
|
// init jQuery UI Tabs
|
||
|
setTimeout(function () {
|
||
|
$( ".dtheme-cmb2-tabs" ).tabs();
|
||
|
});
|
||
|
});
|
||
|
})(jQuery);
|
||
|
|
||
|
jQuery.noConflict();
|