Skip to content

Commit 0c138d8

Browse files
committed
Cleanup admin settings js files
* 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 <[email protected]>
1 parent 393d581 commit 0c138d8

19 files changed

Lines changed: 519 additions & 561 deletions

apps/settings/css/settings.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1755,3 +1755,18 @@ doesnotexist:-o-prefocus, .strengthify-wrapper {
17551755
}
17561756
}
17571757
}
1758+
1759+
.animated {
1760+
animation: blink-animation 1s steps(5, start) 4;
1761+
}
1762+
1763+
@keyframes blink-animation {
1764+
to {
1765+
opacity: 0.6;
1766+
}
1767+
}
1768+
@-webkit-keyframes blink-animation {
1769+
to {
1770+
opacity: 1;
1771+
}
1772+
}

apps/settings/js/admin.js

Lines changed: 0 additions & 333 deletions
This file was deleted.

0 commit comments

Comments
 (0)