1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-02 09:11:54 +02:00

Remove unused variable

Get rid of a variable that was copy-pasted along from a previous incarnation of this fix.
This commit is contained in:
David LaPalomento 2013-03-04 14:53:27 -05:00
parent ab25a823b7
commit b662139708

View File

@ -205,9 +205,7 @@ vjs.Html5.canPlaySource = function(srcObj){
};
vjs.Html5.canControlVolume = function(){
var
volume = vjs.TEST_VID.volume,
volumeOptions = {};
var volume = vjs.TEST_VID.volume;
vjs.TEST_VID.volume = (volume / 2) + 0.1;
return volume !== vjs.TEST_VID.volume;
};