Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added afterOpen and beforeClose callbacks #55

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
60 changes: 50 additions & 10 deletions jquery.bpopup.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* bpopup_fix_3.js */
/*===================================================================================================================
* @name: bPopup
* @type: jQuery
Expand All @@ -18,6 +19,10 @@

// OPTIONS
var o = $.extend({}, $.fn.bPopup.defaults, options);

if(o.afterOpen !== false){
callback = o.afterOpen;
}

// HIDE SCROLLBAR?
if (!o.scrollBar)
Expand Down Expand Up @@ -53,7 +58,15 @@
$popup.close = function() {
close();
};


$popup.open = function(){
open();
}

$popup.destroy = function(){
destroy();
}

$popup.reposition = function(animateSpeed) {
reposition(animateSpeed);
};
Expand All @@ -69,7 +82,10 @@
function init() {
triggerCall(o.onOpen);
popups = ($w.data('bPopup') || 0) + 1, id = prefix + popups + '__',fixedVPos = o.position[1] !== 'auto', fixedHPos = o.position[0] !== 'auto', fixedPosStyle = o.positionStyle === 'fixed', height = $popup.outerHeight(true), width = $popup.outerWidth(true);
o.loadUrl ? createContent() : open();
if(o.autoOpen){
o.loadUrl ? createContent() : open();
}
// o.loadUrl ? createContent() : open();
};

function createContent() {
Expand Down Expand Up @@ -106,10 +122,15 @@
function open(){
// MODAL OVERLAY
if (o.modal) {
$('<div class="b-modal '+id+'"></div>')
.css({backgroundColor: o.modalColor, position: 'fixed', top: 0, right:0, bottom:0, left: 0, opacity: 0, zIndex: o.zIndex + popups})
.appendTo(o.appendTo)
.fadeTo(o.speed, o.opacity);
if($('div.b-modal.'+id).length){
// console.log('b-modal exists');
// Do nothing - b-modal (overlay) already exists
}else{
$('<div class="b-modal '+id+'"></div>')
.css({backgroundColor: o.modalColor, position: 'fixed', top: 0, right:0, bottom:0, left: 0, opacity: 0, zIndex: o.zIndex + popups})
.appendTo(o.appendTo)
.fadeTo(o.speed, o.opacity);
}
}

// POPUP
Expand All @@ -126,10 +147,13 @@
$(this).appendTo(o.appendTo);
}
});
doTransition(true);
doTransition(true);
};

function close() {

triggerCall(o.beforeClose);

if (o.modal) {
$('.b-modal.'+$popup.data('id'))
.fadeTo(o.speed, 0, function() {
Expand All @@ -144,6 +168,14 @@

return false; // Prevent default
};

function destroy(){
if (o.modal) {
$('.b-modal.'+$popup.data('id')).remove();
}
unbindEvents();
$popup.remove();
};

function reposition(animateSpeed){
wH = windowHeight();
Expand Down Expand Up @@ -314,9 +346,13 @@
};

function calcPosition(){
vPos = fixedVPos ? o.position[1] : Math.max(0, ((wH- $popup.outerHeight(true)) / 2) - o.amsl)
, hPos = fixedHPos ? o.position[0] : (wW - $popup.outerWidth(true)) / 2
, inside = insideWindow();
vPos = fixedVPos ? o.position[1] : Math.max(0, ((wH- $popup.outerHeight(true)) / 2) - o.amsl);
if(o.positionContainer != null){
hPos = fixedHPos ? o.position[0] : (o.positionContainer.outerWidth() - $popup.outerWidth(true)) / 2;
}else{
hPos = fixedHPos ? o.position[0] : (wW - $popup.outerWidth(true)) / 2;
}
inside = insideWindow();
};

function insideWindow(){
Expand All @@ -342,6 +378,7 @@
amsl: 50
, appending: true
, appendTo: 'body'
, autoOpen: false
, autoClose: false
, closeClass: 'b-close'
, content: 'ajax' // ajax, iframe or image
Expand All @@ -359,7 +396,9 @@
, modalClose: true
, modalColor: '#000'
, onClose: false
, beforeClose: false
, onOpen: false
, afterOpen: false
, opacity: 0.7
, position: ['auto', 'auto'] // x, y,
, positionStyle: 'absolute'// absolute or fixed
Expand All @@ -368,5 +407,6 @@
, transition: 'fadeIn' //transitions: fadeIn, slideDown, slideIn, slideBack
, transitionClose: false
, zIndex: 9997 // popup gets z-index 9999, modal overlay 9998
, positionContainer:null
};
})(jQuery);
2 changes: 1 addition & 1 deletion jquery.bpopup.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.