?? quick-tag-compressed.js
字號:
QuickTag=function(editor){this.editor=editor;var cfg=editor.config;var actionHandlerFunctRef=QuickTag.actionHandler(this);cfg.registerButton({id:"InsertTag",tooltip:QuickTag_langArray["Quick Tag Editor"],image:editor.imgURL("ed_quicktag.gif","QuickTag"),textMode:false,action:actionHandlerFunctRef,context:null,hide:false,selection:true});};QuickTag.I18N=QuickTag_langArray;QuickTag.actionHandler=function(instance){return(function(editor){instance.buttonPress(editor);});};QuickTag.prototype.buttonPress=function(editor){var sel=editor.getSelectedHTML().replace(/(<[^>]*>| |\n|\r)/g,"");var param=new Object();param.editor=editor;if(/\w/.test(sel)){var setTagHandlerFunctRef=QuickTag.setTagHandler(this);editor._popupDialog("plugin://QuickTag/quicktag",setTagHandlerFunctRef,param,450,108);}else{alert(QuickTag.I18N['You have to select some text']);}};QuickTag.setTagHandler=function(instance){return(function(param){if(param&&typeof(param.tagopen)!="undefined"){instance.editor.focusEditor();instance.editor.surroundHTML(param.tagopen,param.tagclose);}});};QuickTag._pluginInfo={name:"QuickTag",version:"1.2",developer:"Cau Guanabara & Stanislas Rolland",developer_url:"mailto:caugb@ibest.com.br",c_owner:"Cau Guanabara & Stanislas Rolland",sponsor:"Independent production & Fructifor Inc.",sponsor_url:"http://www.netflash.com.br/gb/HA3-rc1/examples/quick-tag.html",license:"GPL"};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -