Skip to content

Commit 2a9568c

Browse files
stop event propagation on hysplit button
1 parent 83bda69 commit 2a9568c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

js/app.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,9 @@ $(window).ready(function() {
360360
if(embed.graph_expanded) $('#telemetry_graph .graph_label').click();
361361

362362
// hysplit button
363-
$("#main").on('click','.row .data .hysplit', function() {
363+
$("#main").on('click','.row .data .hysplit', function(event) {
364+
event.stopPropagation();
365+
364366
var elm = $(this);
365367
var name = vehicle_names[elm.attr('data-index')]
366368

0 commit comments

Comments
 (0)