Skip to content

Commit eb5c2cd

Browse files
committed
minor fixes
1 parent 2525ee0 commit eb5c2cd

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)