| 12345678910111213141516171819 | ///import core///import plugins\inserthtml.js///commands 插入框架///commandsName  InsertFrame///commandsTitle  插入Iframe///commandsDialog  dialogs\insertframeUE.plugins['insertframe'] = function() {   var me =this;    function deleteIframe(){        me._iframe && delete me._iframe;    }    me.addListener("selectionchange",function(){        deleteIframe();    });};
 |