summaryrefslogtreecommitdiff
path: root/public/js/extra.js
diff options
context:
space:
mode:
authorSheogorath2018-10-04 20:01:01 +0200
committerSheogorath2018-10-10 23:42:41 +0200
commit1d452a6ed4c0bfac4dadd2c90fa53282222ebe1b (patch)
treee2f8b34cef0cc836fb782811eb5d4e24b5660edf /public/js/extra.js
parentbf525e43d4b1806b0a99f7c145a16087de7438fa (diff)
Remove dead package octicon
Octicon no longer provides its CSS classes and this way is useless in CodiMD. Replacing all used classes in the UI and remove it from build system. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'public/js/extra.js')
-rw-r--r--public/js/extra.js2
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
}