mirror of
https://github.com/videojs/video.js.git
synced 2024-12-04 10:34:51 +02:00
Merge branch 'hotfix/multiple-control-fades-fix' into stable
This commit is contained in:
commit
3540fcfee8
@ -50,3 +50,6 @@ CHANGELOG
|
||||
|
||||
---- 3.2.1 / 2012-04-06 / options-width-fix ------------------------------------
|
||||
* Fixed setting width/height with javascript options
|
||||
|
||||
---- 3.2.2 / 2012-05-02 / multiple-control-fades-fix ---------------------------
|
||||
* Fixed error with multiple controls fading listeners
|
||||
|
@ -1,4 +1,4 @@
|
||||
---
|
||||
minor: 2
|
||||
major: 3
|
||||
patch: 1
|
||||
patch: 2
|
||||
|
2
src/controls.js
vendored
2
src/controls.js
vendored
@ -30,7 +30,7 @@ _V_.ControlBar = _V_.Component.extend({
|
||||
init: function(player, options){
|
||||
this._super(player, options);
|
||||
|
||||
player.addEvent("play", this.proxy(function(){
|
||||
player.one("play", this.proxy(function(){
|
||||
this.fadeIn();
|
||||
this.player.addEvent("mouseover", this.proxy(this.fadeIn));
|
||||
this.player.addEvent("mouseout", this.proxy(this.fadeOut));
|
||||
|
Loading…
Reference in New Issue
Block a user