1
0
mirror of https://github.com/videojs/video.js.git synced 2025-03-05 15:16:06 +02:00

Publish (i.e. prevent closure compiler from obfuscating name of) videojs.Player.prototype.selectSource function. This allows developers to provide their own algorithms for selecting which source a Player should use.

This commit is contained in:
Eric Berdahl 2014-08-17 16:23:09 -07:00 committed by Steve Heffernan
parent 5761ab33bd
commit 5ee97ea9a1

View File

@ -82,3 +82,8 @@ videojs.Player.prototype.userActive = function(){};
* Native controls
*/
videojs.Player.prototype.usingNativeControls = function(){};
/**
* Source selection
*/
videojs.Player.prototype.selectSource = function(){};