Rename and move init function for fullscreen
This commit is contained in:
parent
dceda58642
commit
b3d91b78e1
33
app/ui.js
33
app/ui.js
|
@ -143,9 +143,10 @@ var UI;
|
|||
UI.toggleControlbarSide();
|
||||
}
|
||||
|
||||
// Setup and initialize event handlers
|
||||
UI.initFullscreen();
|
||||
|
||||
// Setup event handlers
|
||||
UI.setupWindowEvents();
|
||||
UI.setupFullscreen();
|
||||
UI.addControlbarHandlers();
|
||||
UI.addTouchSpecificHandlers();
|
||||
UI.addExtraKeysHandlers();
|
||||
|
@ -180,6 +181,20 @@ var UI;
|
|||
}
|
||||
},
|
||||
|
||||
initFullscreen: function() {
|
||||
// Only show the button if fullscreen is properly supported
|
||||
// * Safari doesn't support alphanumerical input while in fullscreen
|
||||
if (!UI.isSafari &&
|
||||
(document.documentElement.requestFullscreen ||
|
||||
document.documentElement.mozRequestFullScreen ||
|
||||
document.documentElement.webkitRequestFullscreen ||
|
||||
document.body.msRequestFullscreen)) {
|
||||
document.getElementById('noVNC_fullscreen_button')
|
||||
.classList.remove("noVNC_hidden");
|
||||
UI.addFullscreenHandlers();
|
||||
}
|
||||
},
|
||||
|
||||
initSettings: function() {
|
||||
var i;
|
||||
|
||||
|
@ -229,20 +244,6 @@ var UI;
|
|||
.addEventListener('click', UI.hideStatus);
|
||||
},
|
||||
|
||||
setupFullscreen: function() {
|
||||
// Only show the button if fullscreen is properly supported
|
||||
// * Safari doesn't support alphanumerical input while in fullscreen
|
||||
if (!UI.isSafari &&
|
||||
(document.documentElement.requestFullscreen ||
|
||||
document.documentElement.mozRequestFullScreen ||
|
||||
document.documentElement.webkitRequestFullscreen ||
|
||||
document.body.msRequestFullscreen)) {
|
||||
document.getElementById('noVNC_fullscreen_button')
|
||||
.classList.remove("noVNC_hidden");
|
||||
UI.addFullscreenHandlers();
|
||||
}
|
||||
},
|
||||
|
||||
addControlbarHandlers: function() {
|
||||
document.getElementById("noVNC_control_bar")
|
||||
.addEventListener('mousemove', UI.activateControlbar);
|
||||
|
|
Loading…
Reference in New Issue