gusucode.com > 金黄色金融投资信息类企业织梦模板(demo205)源码程序 > 金黄色金融投资信息类企业织梦模板(demo205)源码程序/www2/include/ckeditor/plugins/multipic/plugin.js

    // Register a plugin named "dedepage".
(function()
{
    CKEDITOR.plugins.add( 'multipic',
    {
        init : function( editor )
        {
            // Register the command.
            editor.addCommand( 'multipic',{
                exec : function( editor )
                {
                    // Create the element that represents a print break.
                    // alert('dedepageCmd!');
					var mpic = document.getElementById("mPic");
					if(mpic != null && typeof mpic != 'undefined' )
					{
						if(mpic.style.display=='none')
						{
							mpic.style.display='block';
						} else {
							mpic.style.display='none';
						}
					}else {
						alert('本编辑器不支持多图发布功能!');
					}
                }
            });
            // alert('dedepage!');
            // Register the toolbar button.
            editor.ui.addButton( 'MultiPic',
            {
                label : '多图发布',
                command : 'multipic',
                icon: 'images/multipic.gif'
            });
            // alert(editor.name);
        },
        requires : [ 'fakeobjects' ]
    });
})();