Skip to content

Commit

Permalink
Close GH-553: Turn on tech method queuing.
Browse files Browse the repository at this point in the history
  • Loading branch information
heff committed May 31, 2013
1 parent 4db3dba commit 0c4c30a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ vjs.Player.prototype.getCache = function(){
// Pass values to the playback tech
vjs.Player.prototype.techCall = function(method, arg){
// If it's not ready yet, call method when it is
if (this.tech && this.tech.isReady_) {
if (this.tech && !this.tech.isReady_) {
this.tech.ready(function(){
this[method](arg);
});
Expand Down

0 comments on commit 0c4c30a

Please sign in to comment.