• File: step4-init.php
  • Full Path: /home/atelipy/www/wpmain/plugins-20260302113519/duplicator/installer/dup-installer/templates/default/scripts/step4-init.php
  • File size: 513 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

/**
 *
 * @package templates/default
 */

defined('ABSPATH') || defined('DUPXABSPATH') || exit;
?><script>
    //DOCUMENT LOAD
    $(document).ready(function () {
        DUPX.beforeUnloadCheck(false);
        
        $('[data-go-step-one-url]').click(function () {
            document.location.href = decodeURIComponent($(this).data('go-step-one-url'));
        });
        
        //INIT Routines
        $("*[data-type='toggle']").click(DUPX.toggleClick);
        $("#tabs").tabs();
    });
</script>