Skip to content
Snippets Groups Projects
Commit 4cf92516 authored by Chad Pilkey's avatar Chad Pilkey
Browse files

Chrome can manually allow NPAPI until version 45, modified publish window to match

parent ee788486
No related branches found
No related tags found
No related merge requests found
......@@ -115,14 +115,16 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
if (isUsingLessThanChrome38OnMac()) {
setCurrentState("chromeOnMacWarningState");
} else if (isChrome42OrHigher()) {
setCurrentState("chrome42WarningState");
} else {
var javaIssue:String = JavaCheck.checkJava();
if (javaIssue != null) {
setCurrentState("javaIssueWarningState");
javaIssueWarningStateLbl.htmlText = javaIssue;
if (isChrome42OrHigher()) {
setCurrentState("chrome42WarningState");
} else {
setCurrentState("javaIssueWarningState");
javaIssueWarningStateLbl.htmlText = javaIssue;
}
} else {
setCurrentState("dispFullRegionControlBar");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment