Skip to content

Commit

Permalink
Merge pull request #47 from WISVCH/feature-speedup-loading
Browse files Browse the repository at this point in the history
Remove font-awesome dependency
  • Loading branch information
julian9499 authored Feb 22, 2022
2 parents 5bf0526 + 33c2a51 commit bbfd616
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 23 deletions.
2 changes: 1 addition & 1 deletion mand.env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ NOTFOUNDURL=
CONNECTURL=
CONNECTCLIENTID=
CLIENTSECRET=
REDIRECTURL=
REDIRECTURL=http://localhost:8080/admin
ALLOWEDGROUP=
3 changes: 0 additions & 3 deletions web/delete.svg

This file was deleted.

3 changes: 0 additions & 3 deletions web/edit.svg

This file was deleted.

5 changes: 0 additions & 5 deletions web/import/font-awesome/all.min.js

This file was deleted.

12 changes: 4 additions & 8 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -287,19 +287,15 @@

let edit = document.createElement('td');
let editBox = document.createElement('span');
let editIcon = document.createElement('i');
let remove = document.createElement('td');
let removeBox = document.createElement('span');
let removeIcon = document.createElement('i');

editBox.classList.add('icon', 'is-small');
editIcon.classList.add('fas', 'fa-edit');
editBox.appendChild(editIcon);
editBox.classList.add('button', 'is-link');
editBox.innerHTML = 'edit';
edit.appendChild(editBox);

removeBox.classList.add('icon', 'is-small');
removeIcon.classList.add('fas', 'fa-trash');
removeBox.appendChild(removeIcon);
removeBox.classList.add('button', 'is-danger');
removeBox.innerHTML = 'del';
remove.appendChild(removeBox);

name.textContent = l.Name;
Expand Down
3 changes: 0 additions & 3 deletions web/to.svg

This file was deleted.

0 comments on commit bbfd616

Please sign in to comment.