| Current Path : /home/ereika83/public_html/wp-content/plugins/snapshot/assets/js/src/ |
| Current File : /home/ereika83/public_html/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);