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

Fix toggleFullscreen() if icon is hidden
patch-ionaru
Wes Cossick 7 years ago committed by GitHub
commit 0b4b70a4a2

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

Loading…
Cancel
Save