mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 23:36:16 -04:00
Added BCD operations with tests
This commit is contained in:
parent
bcaef8ba54
commit
c773edceb9
6 changed files with 382 additions and 1 deletions
|
@ -35,7 +35,9 @@
|
|||
"use strict";
|
||||
|
||||
// Load theme before the preloader is shown
|
||||
document.querySelector(":root").className = JSON.parse(localStorage.getItem("options")).theme;
|
||||
try {
|
||||
document.querySelector(":root").className = JSON.parse(localStorage.getItem("options")).theme;
|
||||
} catch (e) {}
|
||||
|
||||
// Define loading messages
|
||||
const loadingMsgs = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue