Skip to content

Commit

Permalink
added a class to the hover divs
Browse files Browse the repository at this point in the history
  • Loading branch information
johndyer committed Jan 6, 2012
1 parent 43fe18a commit c363ed1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/mep-feature-fullscreen.js
Expand Up @@ -97,9 +97,9 @@
fullscreenIsDisabled = false;
}
},
videoHoverDiv = $('<div />').appendTo(t.container).mouseover(restoreControls),
controlsLeftHoverDiv = $('<div />').appendTo(t.container).mouseover(restoreControls),
controlsRightHoverDiv = $('<div />').appendTo(t.container).mouseover(restoreControls),
videoHoverDiv = $('<div class="mejs-fullscreen-hover" />').appendTo(t.container).mouseover(restoreControls),
controlsLeftHoverDiv = $('<div class="mejs-fullscreen-hover" />').appendTo(t.container).mouseover(restoreControls),
controlsRightHoverDiv = $('<div class="mejs-fullscreen-hover" />').appendTo(t.container).mouseover(restoreControls),
positionHoverDivs = function() {
var style = {position: 'absolute', top: 0, left: 0}; //, backgroundColor: '#f00'};
videoHoverDiv.css(style);
Expand Down

0 comments on commit c363ed1

Please sign in to comment.