Your IP : 216.73.216.158


Current Path : /home/megadansyp/www/components/com_jevents/assets/js/
Upload File :
Current File : /home/megadansyp/www/components/com_jevents/assets/js/editpopupJQ.js

function jevEditPopup(url) {
    /** close dialog may not exist for monthly calendar */
    try {
        jQuery('.action_dialogJQ').modal('hide');
    }
    catch (e) {
    }

    /** see http://stackoverflow.com/questions/16152275/how-to-resize-twitter-bootstrap-modal-dynamically-based-on-the-content */
    jQuery('#myEditModal .modal-header').css({'display': 'block'});
    jQuery('#myEditModal .modal-title').html(Joomla.JText._("JEV_ADD_EVENT"));
    /** jQuery('#myEditModal .modal-body').css({  'overflow-y':'auto'}); */
    launchModal('#myEditModal', url);

    /** consider using https://github.com/noelboss/featherlight/#usage instead ! */

}

function jevEditTranslation(url, title) {
    /** close dialog may not exist for monthly calendar */
    try {
        jQuery('.action_dialogJQ').modal('hide');
    }
    catch (e) {
    }

    /** see http://stackoverflow.com/questions/16152275/how-to-resize-twitter-bootstrap-modal-dynamically-based-on-the-content */
    jQuery('#myEditModal .modal-header').css({'display': 'block'});
    jQuery('#myEditModal .modal-title').html(title);
    /** jQuery('#myEditModal .modal-body').css({  'overflow-y':'auto'}); */
    launchModal('#myEditModal', url);

    /** consider using https://github.com/noelboss/featherlight/#usage instead ! */

}

function jevEditPopupNoHeader(url) {
    /** close dialog may not exist for monthly calendar */
    try {
        jQuery('.action_dialogJQ').modal('hide');
    }
    catch (e) {
    }

    /** Will be true if bootstrap 3 is loaded, false if bootstrap 2 or no bootstrap */
    var bootstrap3_enabled = (typeof jQuery().emulateTransitionEnd == 'function');

    /** see http://stackoverflow.com/questions/16152275/how-to-resize-twitter-bootstrap-modal-dynamically-based-on-the-content */
    jQuery('#myEditModal .modal-body').css({'top': '5px'});
    jQuery('#myEditModal .modal-header').css({'display': 'none'});
    launchModal('#myEditModal', url);

}

function jevEditPopupNoTitle(url) {
    /** close dialog may not exist for monthly calendar */
    try {
        jQuery('.action_dialogJQ').modal('hide');
    }
    catch (e) {
    }

    /** see http://stackoverflow.com/questions/16152275/how-to-resize-twitter-bootstrap-modal-dynamically-based-on-the-content */
    jQuery('#myEditModal .modal-body').css({'top': '5px'});
    jQuery('#myEditModal .modal-header .close').css({
        'margin-right': '-15px',
        'margin-top': '-15px',
        'opacity': 1,
        'font-size:': '30px'
    });
    jQuery('#myEditModal .modal-header ').css({'height': '0px', 'z-index': '99', 'border': 'none'});
    jQuery('#myEditModal .modal-header .modal-title').css({'display': 'none'});

    launchModal('#myEditModal', url);

}

function launchModal(selector, url) {
    /** Clear the old page! */
    jQuery(selector + ' iframe').attr("src", "");
    /** Will be true if bootstrap 3 is loaded, false if bootstrap 2 or no bootstrap */
    var bootstrap3_enabled = (typeof jQuery().emulateTransitionEnd == 'function');
    if (bootstrap3_enabled) {
        jQuery(selector).off('shown.bs.modal');
        jQuery(selector).on('shown.bs.modal', function () {
            /*jQuery(selector+' iframe').attr("src","about:blank");*/
            /* scrolling issue in iOS 11.3*/
            var scrollT = jQuery(window).scrollTop();
            if (scrollT > 0) {
                jQuery(selector).data('scrollTop', scroll);
            }
            if (url) {
                jQuery(selector + ' iframe').attr("src", url);
            }
        });
        jQuery(selector).on('hidden.bs.modal', function () {
            /* scrolling issue in iOS 11.3*/
            var scrollT = jQuery(selector).data('scrollTop') || 0;
            if (scroll > 0) {
                jQuery(window).scrollTop(scrollT);
            }
        });
    }
    else {
        jQuery(selector).off('shown');
        jQuery(selector).on('shown', function () {
            /*jQuery(selector+' iframe').attr("src","about:blank");*/
            /* scrolling issue in iOS 11.3*/
            var scrollT = jQuery(window).scrollTop();
            if (scrollT > 0) {
                jQuery(selector).data('scrollTop', scrollT);
            }
            jQuery('body').css({
                 // position: 'fixed'
            });
            if (url) {
                jQuery(selector + ' iframe').attr("src", url);
            }
        });
        jQuery(selector).on('hidden', function () {
            /* scrolling issue in iOS 11.3*/
            jQuery('body').css({
                position: 'static'
            });
            var scrollT = jQuery(selector).data('scrollTop') || 0;
            if (scrollT > 0) {
                jQuery(window).scrollTop(scrollT);
            }
        });
    }
    // Joomla 4 changes
    try {
        var myModal = new bootstrap.Modal(document.querySelector(selector), {backdrop: true, show: true, keyboard: true, remote: ''});
        myModal.show();
    }
    catch (e) {
        jQuery(selector).modal({backdrop: true, show: true, keyboard: true, remote: ''});
    }
    /** initialized with no keyboard */
    /** reloads parent page on close!
     ** jQuery(selector).on('hidden.bs.modal', function (e) { location.reload();}); */

}