393d4fe591
After #4326 Android users could no longer long-touch to bring up the context menu for channels in the network list. Now they can again.
6 lines
106 B
JavaScript
6 lines
106 B
JavaScript
function distance([x1, y1], [x2, y2]) {
|
|
return Math.hypot(x1 - x2, y1 - y2);
|
|
}
|
|
|
|
export default distance;
|