made claim popover more friendly to mobile environments
parent
8a2883f80b
commit
7939771bf8
|
@ -254,7 +254,11 @@
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('.claim-tooltip').popover();
|
$('.claim-tooltip').popover();
|
||||||
|
$('.claim-tooltip').on('click', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$(this).popover('show');
|
||||||
|
});
|
||||||
|
|
||||||
$(document).on('click', '#toggleMoreInformation', function(event) {
|
$(document).on('click', '#toggleMoreInformation', function(event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
if ($('#moreInformation').is(':visible')) {
|
if ($('#moreInformation').is(':visible')) {
|
||||||
|
|
Loading…
Reference in New Issue