diff options
author | Christoph (Sheogorath) Kern | 2018-10-11 00:19:00 +0200 |
---|---|---|
committer | GitHub | 2018-10-11 00:19:00 +0200 |
commit | 4bce4b16356f0538b8c9425a02aeb9ab7f1eacf8 (patch) | |
tree | e2f8b34cef0cc836fb782811eb5d4e24b5660edf /public/js | |
parent | bf525e43d4b1806b0a99f7c145a16087de7438fa (diff) | |
parent | 1d452a6ed4c0bfac4dadd2c90fa53282222ebe1b (diff) |
Merge pull request #989 from SISheogorath/remove/octicon
Remove dead package octicon
Diffstat (limited to '')
-rw-r--r-- | public/js/extra.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/extra.js b/public/js/extra.js index 7a1077d5..dd264047 100644 --- a/public/js/extra.js +++ b/public/js/extra.js @@ -834,7 +834,7 @@ const anchorForId = id => { const anchor = document.createElement('a') anchor.className = 'anchor hidden-xs' anchor.href = `#${id}` - anchor.innerHTML = '<span class="octicon octicon-link"></span>' + anchor.innerHTML = '<i class="fa fa-link"></i>' anchor.title = id return anchor } |