You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm pleased to say that I've been able to integrate EpicEditor into my Meteor app with great success. However, I can't disable the buttons on one of my views that sets the display in preview mode via "editor.preview();".
Below are the different button opts settings I've tried:
button: false,
button: {
preview: false,
fullscreen: false,
bar: false
},
The preview and fullscreen buttons still show up.
The issue may be because the display style is set in the html tag <div id="epiceditor-utilbar" style="display: block;">
So, I also tried using JQuery to override this DOM element
$('#epiceditor-utilbar').css('display', 'none');
$('#epiceditor-utilbar').hide();
$('#epiceditor-utilbar').removeAttr('img');
None of these things worked for me to hide the buttons. I've search the issues wiki and a lot of google searches for a solution, but so far no joy.
Thoughts?
Thanks... Jim
The text was updated successfully, but these errors were encountered:
I'm pleased to say that I've been able to integrate EpicEditor into my Meteor app with great success. However, I can't disable the buttons on one of my views that sets the display in preview mode via "editor.preview();".
Below are the different button opts settings I've tried:
button: false,
button: {
preview: false,
fullscreen: false,
bar: false
},
The preview and fullscreen buttons still show up.
The issue may be because the display style is set in the html tag <div id="epiceditor-utilbar" style="display: block;">
So, I also tried using JQuery to override this DOM element
None of these things worked for me to hide the buttons. I've search the issues wiki and a lot of google searches for a solution, but so far no joy.
Thoughts?
Thanks... Jim
The text was updated successfully, but these errors were encountered: