jwysiwyg jquery plugin
Does someone knows how to make jwysiwy开发者_开发知识库g editor in fullscreen mode?
here is an example of one:
fullscreen wysiwyg editor or this one: editor #2
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.
精彩评论