| changeset 70 | 2542e988f80c |
| parent 66 | dd2fbf4c998f |
| child 74 | 22aca5b735a2 |
--- a/integration/js/common.js Mon Jun 03 13:33:35 2013 +0200 +++ b/integration/js/common.js Mon Jun 03 17:46:57 2013 +0200 @@ -31,7 +31,12 @@ }); $('.popup').on('click', '.popup-content a', function(e){ - e.preventDefault(); + + if($(this).hasClass('no-prevent')){ + return true; + }else{ + e.preventDefault(); + } if($(this).hasClass('btn-cancel')){ $(this).parents('.popup').modal('hide'); }