1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-12 11:15:04 +02:00

Fix indentation

This commit is contained in:
Gary Katsevman 2013-03-19 11:48:13 -04:00
parent 452f9b3971
commit 5b324c05e1

10
src/js/controls.js vendored
View File

@ -51,11 +51,11 @@ vjs.ControlBar = function(player, options){
var idx;
if (touchstart) {
idx = this.el().className.search('fade-in');
if (idx !== -1) {
this.fadeOut();
} else {
this.fadeIn();
}
if (idx !== -1) {
this.fadeOut();
} else {
this.fadeIn();
}
}
touchstart = false;