Hide header bar controls when the NaCl plugin is loading

This commit is contained in:
Cameron Gutman 2016-09-11 22:23:33 -07:00
parent 506bc64b66
commit 06ef1fe94b

View File

@ -32,12 +32,14 @@ function fullscreenChromeWindow() {
}
function changeUiModeForNaClLoad() {
$('.mdl-layout__header').children().hide();
$("#main-content").children().not("#listener, #naclSpinner").hide();
$('#naclSpinnerMessage').text('Loading Moonlight plugin...');
$('#naclSpinner').css('display', 'inline-block');
}
function restoreUiAfterNaClLoad() {
$('.mdl-layout__header').children().not("#quitCurrentApp").show();
$("#main-content").children().not("#listener, #naclSpinner, #gameSelection").show();
$('#naclSpinner').hide();
$('#loadingSpinner').css('display', 'none');