Fix #81 to activate close button in the modal footer

This commit is contained in:
Daniel Kvist 2015-10-22 22:14:09 +02:00
parent be0dc297e7
commit c1e836360f

View File

@ -35,7 +35,7 @@ function($,
showAboutModal: function() {
$('#about-modal').show(400);
$('#about-modal div.modal-header button.close').unbind('click').on('click', function() {
$('#about-modal div.modal-header button.close, #about-modal div.modal-footer button').unbind('click').on('click', function() {
$('#about-modal').hide(200);
});
}