Merge pull request #527 from luclu/fix-sideBySide-fullscreen-toggle

Fix toggleFullscreen() if icon is hidden
This commit is contained in:
Wes Cossick 2017-03-01 15:58:02 -06:00 committed by GitHub
commit 0b4b70a4a2

View file

@ -211,12 +211,14 @@ function toggleFullScreen(editor) {
// Update toolbar button
var toolbarButton = editor.toolbarElements.fullscreen;
if (editor.toolbarElements.fullscreen) {
var toolbarButton = editor.toolbarElements.fullscreen;
if(!/active/.test(toolbarButton.className)) {
toolbarButton.className += " active";
} else {
toolbarButton.className = toolbarButton.className.replace(/\s*active\s*/g, "");
if(!/active/.test(toolbarButton.className)) {
toolbarButton.className += " active";
} else {
toolbarButton.className = toolbarButton.className.replace(/\s*active\s*/g, "");
}
}