diff --git a/src/Template/Main/index.ctp b/src/Template/Main/index.ctp index 1940424..2d69dc0 100644 --- a/src/Template/Main/index.ctp +++ b/src/Template/Main/index.ctp @@ -77,6 +77,10 @@ setInterval(updateStatus, updateInterval); setInterval(updateRecentBlocks, updateInterval); + $(document).on('click', '.recent-claims .claim-box .tx-link', function(evt) { + evt.stopImmediatePropagation(); + }); + $(document).on('click', '.recent-claims .claim-box', function() { var id = $(this).attr('data-id'); window.location.href = '/claims/' + id;