Skip to content

Commit f2a345f

Browse files
committed
minor fixes
1 parent 7de94e9 commit f2a345f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/webui/src/elements.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const repeatInterval = 500;
7474

7575
function isLeftButtonOrTouch(e)
7676
{
77-
return e.button === 0 || typeof e.touches != 'undefined';
77+
return e.button === 0 || typeof e.touches !== 'undefined';
7878
}
7979

8080
export class RepeatingButton extends React.PureComponent

0 commit comments

Comments
 (0)