Redmineの注記にテンプレートを入れる(手抜き版)
3166 ワード
ViewCustomizePluginを使います。
Path pattern: /issues/[0-9]+$
Type: JavaScript
$(function(){
// テンプレートの文言設定
let template = "1行目:テンプレート付きで注記を入れる\n2行目:改行する";
template = encodeURIComponent(template);
// とりあえず上のメニューにだけ追加する
let elementReference = document.getElementById( "content" ).firstElementChild;
// Aタグを追加
let anchor = document.createElement("a");
anchor.href = location.pathname + "/edit?issue[notes]=" + template;
let str = document.createTextNode("テンプレート付き注記");
anchor.appendChild(str);
elementReference.insertBefore(anchor, elementReference.firstChild);
});
こんな感じになります。
Author And Source
この問題について(Redmineの注記にテンプレートを入れる(手抜き版)), 我々は、より多くの情報をここで見つけました https://qiita.com/ryouma_nagare/items/385565b925e4f317362e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .