?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/schtroumpf.fr/modules/an_productextratabs/views/js/



?? Go up: /home/webdevt/www/schtroumpf.fr/modules/an_productextratabs/views

?? Viewing: block.js

/**
* 2022 Anvanto
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
*
*  @author    Anvanto <anvantoco@gmail.com>
*  @copyright 2022 Anvanto
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*/

(function ($) {
    $(document).ready(function () {
        $('.tabs').hide();
        var length = $('.tabs .nav-tabs .nav-item').length;
        var tabsdiv = $('ul.nav-tabs').parent();
        var html = '';
        for (var i = 0; i < length; i++) {
            html +=
                '<div class="card">\n' +
                '  <div class="card-header">\n' +
                $('.tabs .nav-tabs .nav-item').eq(i).find('.nav-link').text() + '\n' +
                '  </div>\n' +
                '  <div class="card-body">\n' +
                $('.tabs .tab-pane').eq(i).html() +
                '  </div>\n' +
                '</div>';
        }
        tabsdiv.replaceWith(html);
    });
})(jQuery);


??

??