Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 624 Bytes

File metadata and controls

47 lines (32 loc) · 624 Bytes

Add all issues link on header

Add a link to the list of all issues on the header.
全チケット一覧へのリンクをヘッダに追加します。

Setting

Path Pattern

None

Insert Position

Head of all pages

Code

JavaScript

$(function() {
  $('#top-menu > ul')
    .append('<li><a href="/issues">All Issues</a></li>');
});

Result

Before

before

After

after