<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Minification failed. Returning unminified contents.
(1,1): run-time error CSS1019: Unexpected token, found '$'
(1,2): run-time error CSS1019: Unexpected token, found '('
(1,11): run-time error CSS1031: Expected selector, found ')'
(1,11): run-time error CSS1025: Expected comma or open brace, found ')'
(29,2): run-time error CSS1019: Unexpected token, found ')'
(33,10): run-time error CSS1031: Expected selector, found 'ShowMsg('
(33,10): run-time error CSS1025: Expected comma or open brace, found 'ShowMsg('
 */
$(document).ready(function () {

    var toggle = document.querySelector(".username-login");
    if (toggle != null) {
        var menu_info = document.querySelector(".from-info");
        toggle.addEventListener("click", () =&gt; {
            menu_info.classList.toggle("open-form-infor");
        });
    }

    $(document).click(function (event) {
        var $target = $(event.target);
        if (!$target.closest('.username-login').length &amp;&amp; $('.username-login').is(":visible")) {
            document.querySelector(".from-info").classList.remove("open-form-infor");
        }
    });



    // -------- img lazyload
    let myLazyLoad = new LazyLoad({
        use_native: true,
        threshold: 20,
    });
    myLazyLoad.update();



});



function ShowMsg(TieuDe, NoiDung) {
    var modalHTML = `
    &lt;div class="modal scale-up" tabindex="-1"&gt;
        &lt;div class="modal-dialog modal-dialog-centered"&gt;
            &lt;div class="modal-content"&gt;
                &lt;div class="modal-header"&gt;
                    &lt;h5 class="modal-title"&gt;${TieuDe}&lt;/h5&gt;
                    &lt;button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"&gt;&lt;/button&gt;
                &lt;/div&gt;
                &lt;div class="modal-body"&gt;
                    ${NoiDung}
                &lt;/div&gt;

                &lt;div class="modal-footer" style="border-top: none"&gt;
                    &lt;button type="button" class="btn btn-sm btn-primary" data-bs-dismiss="modal" aria-label="Close"&gt;&lt;i class="bi bi-send"&gt;&lt;/i&gt; OK &lt;/button&gt;
                &lt;/div&gt;

            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;`;

    $(modalHTML).modal("show");
}
</pre></body></html>