1
0
mirror of https://github.com/videojs/video.js.git synced 2025-03-19 21:28:23 +02:00

remove unused var

This commit is contained in:
Gary Katsevman 2014-02-05 19:19:14 -05:00
parent 07cd9800e8
commit 4b254a07df

View File

@ -78,7 +78,7 @@ vjs.Component = vjs.CoreObject.extend({
touchmove = true;
}));
this.on('touchend', vjs.bind(this, function(event) {
if (!touchmove && !didSomething) {
if (!touchmove) {
this.player_.reportUserActivity();
}
}));