Your IP : 216.73.216.171


Current Path : /home/ereika83/www/wp-content/plugins/snapshot/assets/js/src/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/snapshot/assets/js/src/utils.js

;(function ($) {
    SS_UTILS.openModal = function(title, content, onRender, onClose){
        var newModal = $($("#ss-modal-template").html());

        newModal.find(".wpmud-box-title > h3").html(title);
        newModal.find(".wpmud-box-content").html(content);
        $("#wpbody-content").append(newModal);
        if(typeof(onRender) === 'function')onRender();
        newModal.fadeIn();
        newModal.on("click", ".wpmud-box-title > .close", function(){
            newModal.fadeOut();
            setTimeout(function(){
                newModal.remove();
                if(typeof(onClose) === 'function') onClose();
            },400);
        });
    };
})(jQuery);