Skip to content

Commit

Permalink
Cleanup admin settings js files
Browse files Browse the repository at this point in the history
* Move admin.js to webpack, so that this use the bundled jquery files
  instead of the deprecated window.$ Also fixing formatting

* Remove log.js that seems to be from a time where logreader was bundled
  with server and I couldn't find an usage of it anymore

* Fix recent regression in rebuild navigation function (now not depending on
  jquery anymore and bundled by webpack).

Signed-off-by: Carl Schwan <carl@carlschwan.eu>
  • Loading branch information
CarlSchwan committed Feb 17, 2022
1 parent f5d1365 commit 7c8a901
Show file tree
Hide file tree
Showing 17 changed files with 516 additions and 558 deletions.
15 changes: 15 additions & 0 deletions apps/settings/css/settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1755,3 +1755,18 @@ doesnotexist:-o-prefocus, .strengthify-wrapper {
}
}
}

.animated {
animation: blink-animation 1s steps(5, start) 4;
}

@keyframes blink-animation {
to {
opacity: 0.6;
}
}
@-webkit-keyframes blink-animation {
to {
opacity: 1;
}
}
333 changes: 0 additions & 333 deletions apps/settings/js/admin.js

This file was deleted.

Loading

0 comments on commit 7c8a901

Please sign in to comment.