Skip to content

Instantly share code, notes, and snippets.

@andrIvash
Created October 25, 2015 10:21
Show Gist options
  • Save andrIvash/64cc5c7df4ce20785ba1 to your computer and use it in GitHub Desktop.
Save andrIvash/64cc5c7df4ce20785ba1 to your computer and use it in GitHub Desktop.
popups script
var Popups = (function(){
var
popups = $('.popup');
function _close() {
popups.hide();
}
return {
init: function(){
$('.popup__close, .popup__overlay').on('click', function(e){
e.preventDefault();
_close()
});
},
open: function(id) {
var
reqPopup = popups.filter(id);
_close();
reqPopup.fadeIn(300);
}
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment