开发者

jwysiwyg jquery plugin

开发者 https://www.devze.com 2023-02-17 01:59 出处:网络
Does someone knows how to make jwysiwy开发者_开发知识库g editor in fullscreen mode?here is an example of one:

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消