1
0
mirror of https://github.com/videojs/video.js.git synced 2025-03-17 21:18:27 +02:00

removing redundant ready check

This commit is contained in:
Matt Osborn 2014-07-09 10:12:17 +01:00
parent 3b60b9decd
commit 926ccac6a7

View File

@ -1082,7 +1082,7 @@ vjs.Player.prototype.setSource = function(source, type) {
}
}).bind(this);
this.isReady_ ? _set() : this.ready(_set);
this.ready(_set);
};
/**