利用者:Los688/insert.js
表示
お知らせ: 保存した後、ブラウザのキャッシュをクリアしてページを再読み込みする必要があります。
多くの Windows や Linux のブラウザ
- Ctrl を押しながら F5 を押す。
Mac における Safari
Mac における Chrome や Firefox
- ⌘ Cmd と ⇧ Shift を押しながら R を押す。
詳細についてはWikipedia:キャッシュを消すをご覧ください。
// This script is under public domain, and comes with ABSOLUTELY NO WARRANTY.
// You can use/modify/redistribute without any permission. 未使用
function insertTagsHtml (left, right, text){
return '<a onclick="insertTags(\'' + left + '\', \'' + right + '\', \'\');return false" href="#">' + text +'</a>';
}
$(function() {
if(!document.getElementById('editform')) return;
var html = '<div style="font-size:smaller">';
var f = document.getElementById("editform");
html += insertTagsHtml('\u007B\u007BCommonscat|', '}}', '', '\u007B\u007BCommonscat|}}') + ' · ';
html += insertTagsHtml('\u007B\u007Bcoord||||N||||E|display=title}}', '', '\u007B\u007BCoord}}')+ ' · ';
html += insertTagsHtml('\u007B\u007Bcol-begin}}', '', '\u007B\u007Bcol-begin}}')+ ' · ';
html += insertTagsHtml('\u007B\u007Bcol-2}}', '', '\u007B\u007Bcol-2}}')+ ' · ';
html += insertTagsHtml('\u007B\u007Bcol-end}}', '', '\u007B\u007Bcol-end}}')+ ' · ';
html += insertTagsHtml('class\u003D', '', 'class\u003D')+ ' · ';
html += insertTagsHtml('text-align:', '', 'text-align:')+ ' · ';
var p = document.createElement('p');
p.innerHTML = html;
f.parentNode.insertBefore(p, f);
var p = document.createElement('p');
var s = document.getElementById('contentSub');
s.parentNode.insertBefore(p, s.nextSibling);
});