| 123456789101112131415161718192021222324 |
- ///import core
- ///import plugins\inserthtml.js
- ///commands 插入框架
- ///commandsName InsertFrame
- ///commandsTitle 插入Iframe
- ///commandsDialog dialogs\insertframe\insertframe.html
- UE.plugins['insertframe'] = function() {
- var me =this;
- function deleteIframe(){
- me._iframe && delete me._iframe;
- }
- me.addListener("selectionchange",function(){
- deleteIframe();
- });
- me.commands["insertframe"] = {
- queryCommandState : function(){
- return this.highlight ? -1 :0;
- }
- }
- };
|