1
0
mirror of https://github.com/videojs/video.js.git synced 2025-07-03 00:57:02 +02:00

Switched to single quotes

This commit is contained in:
Steve Heffernan
2014-03-26 14:39:33 -07:00
parent e87fe460cc
commit f363523551

View File

@ -281,7 +281,7 @@ vjs.Html5.canControlVolume = function(){
vjs.TEST_VID.constructor.prototype.canPlayType = function(type) {
if (type && mpegurlRE.test(type)) {
return "maybe";
return 'maybe';
}
return canPlayType.call(this, type);
};
@ -295,7 +295,7 @@ vjs.Html5.canControlVolume = function(){
vjs.TEST_VID.constructor.prototype.canPlayType = function(type){
if (type && mp4RE.test(type)) {
return "maybe";
return 'maybe';
}
return canPlayType.call(this, type);
};