We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I want to hide fullscreen and side-by-side buttons and set default values to fullscreen enabled with side-by-side enabled. My code:
var simplemde = new SimpleMDE({ element: document.getElementById("editor"), autofocus: true, hideIcons: ["guide", "preview", "fullscreen", "side-by-side"]}, ); simplemde.toggleFullScreen() simplemde.toggleSideBySide()
But, when I check website source code the
Is there any options how to hide buttons for fullscreen and side-by-side while having them enabled ?
The text was updated successfully, but these errors were encountered:
Good morning, even if it is evening.
You can use hideIcons field, but You have a wrong placed comma after }, parenthesis.
hideIcons
},
Your code
var simplemde = new SimpleMDE({ element: document.getElementById("editor"), autofocus: true, hideIcons: ["guide", "preview", "fullscreen", "side-by-side"]}, );
Corrected
var simplemde = new SimpleMDE({ element: document.getElementById("editor"), autofocus: true, hideIcons: ["guide", "preview", "fullscreen", "side-by-side"], });
P.S.: Test-drive SimpleMDE with LaTeX feature
Sorry, something went wrong.
No branches or pull requests
Hello,
I want to hide fullscreen and side-by-side buttons and set default values to fullscreen enabled with side-by-side enabled.
My code:
But, when I check website source code the
is empty...Is there any options how to hide buttons for fullscreen and side-by-side while having them enabled ?
The text was updated successfully, but these errors were encountered: