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>
This commit is contained in:
Sheogorath 2018-10-04 20:01:01 +02:00
parent bf525e43d4
commit 1d452a6ed4
No known key found for this signature in database
GPG key ID: 1F05CC3635CDDFFD
8 changed files with 23 additions and 30 deletions

View file

@ -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
}