We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f602546 commit 6bcbe70Copy full SHA for 6bcbe70
js/webui/src/elements.js
@@ -74,7 +74,7 @@ const repeatInterval = 500;
74
75
function isLeftButtonOrTouch(e)
76
{
77
- return e.button === 0 || typeof e.touches != 'undefined';
+ return e.button === 0 || typeof e.touches !== 'undefined';
78
}
79
80
export class RepeatingButton extends React.PureComponent
js/webui/src/volume_control.js
@@ -49,12 +49,12 @@ class VolumeControl_ extends React.PureComponent
49
this.props.onAfterMuteClick();
50
51
52
- handleVolumeUp(e)
+ handleVolumeUp()
53
54
this.context.playerModel.volumeStep(1);
55
56
57
- handleVolumeDown(e)
+ handleVolumeDown()
58
59
this.context.playerModel.volumeStep(-1);
60
0 commit comments