Skip to content

Commit

Permalink
Merge branch 'hotfix/multiple-control-fades-fix' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
heff committed May 3, 2012
2 parents 5fc725c + f82312e commit 3540fcf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion VERSION.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
minor: 2
major: 3
patch: 1
patch: 2
2 changes: 1 addition & 1 deletion src/controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 3540fcf

Please sign in to comment.