bigbluebutton-Github/bigbluebutton-client/resources/prod/check/lib/bbb_check.js
2013-04-12 09:36:21 +00:00

17 lines
345 B
JavaScript
Executable File

(function(window, undefined) {
var BBBCheck = {};
BBBCheck.getFlashPlayerVersion = function() {
return swfobject.getFlashPlayerVersion();
}
BBBCheck.hasMinFlashPlayerVersion = function(flashVersion) {
return swfobject.hasFlashPlayerVersion(flashVersion);
}
window.BBBCheck = BBBCheck;
})(this);