程序员人生 网站导航

ckeditor删除链接中高级Tab页

栏目:jscript时间:2013-10-04 16:22:40

CKEDITOR.on( 'dialogDefinition', function( ev )
{
        // Take the dialog name and its definition from the event
        // data.
        var dialogName = ev.data.name;
        var dialogDefinition = ev.data.definition;

        // Check if the definition is from the dialog we're
        // interested on (the "Link" dialog).
        if ( dialogName == 'link' )
        {
            // Remove the "advanced" tab from the "Link" dialog.
            dialogDefinition.removeContents( 'advanced' );
        }
})

作者: Rady Huang
本文地址: ckeditor删除链接中高级Tab页
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐