aboutsummaryrefslogtreecommitdiffstats
path: root/www/js
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2013-06-06 11:19:28 +0100
committerStruan Donald <struan@exo.org.uk>2013-06-06 11:19:28 +0100
commit71921a7ae6098bfb42451f8a4dee7dc4f45b28c5 (patch)
treec6cf38f6941ecb4cfa6fa5ed1549091803f85109 /www/js
parent0a84c71b904479c430b381907cfc9fe138303460 (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.js3
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();