Reputation: 21
Does someone knows how to make jwysiwyg editor in fullscreen mode?
Upvotes: 0
Views: 614
Reputation: 899
There is a plugin for that: https://github.com/akzhan/jwysiwyg/blob/master/plugins/wysiwyg.fullscreen.js
You can see a running example here: http://akzhan.github.com/jwysiwyg/help/examples/11-plugins.html
You should put a little snippet of code in order to have it working:
fullscreen : {
visible: true,
exec: function () {
if ($.wysiwyg.fullscreen) {
$.wysiwyg.fullscreen.init(this);
}
}
}
Regards.
Upvotes: 1
Reputation: 146350
here is an example of one:
fullscreen wysiwyg editor or this one: editor #2
Upvotes: 1