mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-07-23 09:54:28 -06:00
Merge pull request #527 from luclu/fix-sideBySide-fullscreen-toggle
Fix toggleFullscreen() if icon is hidden
This commit is contained in:
commit
0b4b70a4a2
@ -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, "");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user