made claim popover more friendly to mobile environments

pull/730/head
Justin Richer 2014-11-13 11:35:59 -10:00
parent b14dfa6458
commit d7f8a846c3
1 changed files with 5 additions and 1 deletions

View File

@ -254,7 +254,11 @@
$(document).ready(function() {
$('.claim-tooltip').popover();
$('.claim-tooltip').on('click', function(e) {
e.preventDefault();
$(this).popover('show');
});
$(document).on('click', '#toggleMoreInformation', function(event) {
event.preventDefault();
if ($('#moreInformation').is(':visible')) {