made claim popover more friendly to mobile environments
parent
b14dfa6458
commit
d7f8a846c3
|
@ -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')) {
|
||||
|
|
Loading…
Reference in New Issue