Skip to content

Commit 77ffdac

Browse files
fix hysplit+path buttons not working on mobile
fixes #65
1 parent 53521f5 commit 77ffdac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ $(window).ready(function() {
562562
if(wvar.graph_expanded) $('#telemetry_graph .graph_label').click();
563563

564564
// hysplit button
565-
$("#main").on('click','.row .data .vbutton.hysplit', function(event) {
565+
$("#main").on('tap','.row .data .vbutton.hysplit', function(event) {
566566
event.stopPropagation();
567567

568568
var elm = $(this);
@@ -578,7 +578,7 @@ $(window).ready(function() {
578578
}
579579
});
580580

581-
$("#main").on('click','.row .data .vbutton.path', function(event) {
581+
$("#main").on('tap','.row .data .vbutton.path', function(event) {
582582
event.stopPropagation();
583583

584584
var elm = $(this);

0 commit comments

Comments
 (0)