// source --> https://www.aps-eb.de/wp-content/plugins/etranslation-multilingual/assets/js/mt-notice.js?ver=2.0.6 
/**
 * Function hideMtNotice
 * 
 * Hides the machine translation notice and its space on the page.
 */
function hideMtNotice() {
    jQuery(".mt-notice-container").hide();
    jQuery(".mt-notice-space").hide();
}

jQuery( document ).ready(function() {
    var original_url = mt_notice_params.original_url;
    var img_url = mt_notice_params.img_url;

    // Prepend the machine translation notice container to the body.
    jQuery('body').prepend(
        `<div class="mt-notice-container">\
            <div class="translation-notice">\
                This page has been machine-translated. <a href="${original_url}" class="mt-notice-link">Show original</a>\
            </div>\
            <div id="mt-notice-hide" onclick="hideMtNotice()"><img src='${img_url}' /></div>\
        </div>\
        <div class="mt-notice-space"></div>`
    );

    var mtNoticeContainer = jQuery(".mt-notice-container");

    // Set the height of the space div to match the height of the notice container.
    if (mtNoticeContainer.length) {
        jQuery(".mt-notice-space").css("height", mtNoticeContainer.height());
    }
});