📄 abbreviation.js
字号:
// Abbreviation plugin for HTMLArea
// Implementation by Udo Schmal & Schaffrath NeueMedien
// Original Author - Udo Schmal
//
// (c) Udo Schmal & Schaffrath NeueMedien 2004
// Distributed under the same terms as HTMLArea itself.
// This notice MUST stay intact for use (see license.txt).
function Abbreviation(editor) {
this.editor = editor;
var cfg = editor.config;
var self = this;
// register the toolbar buttons provided by this plugin
cfg.registerButton({
id : "abbreviation",
tooltip : this._lc("Abbreviation"),
image : editor.imgURL("ed_abbreviation.gif", "Abbreviation"),
textMode : false,
action : function(editor) {
self.buttonPress(editor);
}
})
cfg.addToolbarElement("abbreviation", "inserthorizontalrule", 1);
}
Abbreviation._pluginInfo = {
name : "Abbreviation",
version : "1.0",
developer : "Udo Schmal",
developer_url : "",
sponsor : "L.N.Schaffrath NeueMedien",
sponsor_url : "http://www.schaffrath-neuemedien.de/",
c_owner : "Udo Schmal & Schaffrath-NeueMedien",
license : "htmlArea"
};
Abbreviation.prototype._lc = function(string) {
return HTMLArea._lc(string, 'Abbreviation');
};
Abbreviation.prototype.onGenerate = function() {
var style_id = "Abbr-style"
var style = this.editor._doc.getElementById(style_id);
if (style == null) {
style = this.editor._doc.createElement("link");
style.id = style_id;
style.rel = 'stylesheet';
style.href = _editor_url + 'plugins/Abbreviation/abbreviation.css';
this.editor._doc.getElementsByTagName("HEAD")[0].appendChild(style);
}
};
Abbreviation.prototype.buttonPress = function(editor, context, updatecontextclass) {
var outparam = null;
var html = editor.getSelectedHTML();
var sel = editor._getSelection();
var range = editor._createRange(sel);
var abbr = editor._activeElement(sel);
if(!(abbr != null && abbr.tagName.toLowerCase() == "abbr")) {
abbr = editor._getFirstAncestor(sel, 'abbr');
}
if (abbr != null && abbr.tagName.toLowerCase() == "abbr")
outparam = { title : abbr.title,
text : abbr.innerHTML};
else
outparam = { title : '',
text : html};
editor._popupDialog( "plugin://Abbreviation/abbreviation", function( param ) {
if ( param ) {
var title = param["title"];
if (title == "" || title == null) {
if (abbr) {
var child = abbr.innerHTML;
abbr.parentNode.removeChild(abbr);
editor.insertHTML(child);
}
return;
}
try {
var doc = editor._doc;
if (!abbr) {
abbr = doc.createElement("abbr");
abbr.title = title;
abbr.innerHTML = html;
if (HTMLArea.is_ie) {
range.pasteHTML(abbr.outerHTML);
} else {
editor.insertNodeAtSelection(abbr);
}
} else {
abbr.title = title;
}
}
catch (e) { }
}
}, outparam);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -