Default value: false
Set this option to true to show the editor in full screen mode when the page is first opened.
Syntax
$(function () {
// Get value
var returnsValue; // Type: boolean
returnsValue = $(".selector").wijeditor("option", "fullScreenMode");
// Set value
var newValue; // Type: boolean
$(".selector").wijeditor("option", "fullScreenMode", newValue);
});
var fullScreenMode : boolean;
See Also