diff options
author | Struan Donald <struan@exo.org.uk> | 2013-06-06 11:19:28 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-06-06 11:19:28 +0100 |
commit | 71921a7ae6098bfb42451f8a4dee7dc4f45b28c5 (patch) | |
tree | c6cf38f6941ecb4cfa6fa5ed1549091803f85109 /www/js | |
parent | 0a84c71b904479c430b381907cfc9fe138303460 (diff) |
stop default as sometimes it seems to percolate through to the confirm button
Diffstat (limited to 'www/js')
-rw-r--r-- | www/js/views/around.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/js/views/around.js b/www/js/views/around.js index 5c85264..d1075f6 100644 --- a/www/js/views/around.js +++ b/www/js/views/around.js @@ -147,7 +147,8 @@ } }, - onClickMark: function() { + onClickMark: function(e) { + e.preventDefault(); $('#cancel').show(); $('#confirm').show(); $('#view-my-reports').hide(); |