Skip to content

Commit

Permalink
Update main.js
Browse files Browse the repository at this point in the history
  • Loading branch information
revoxhere authored Aug 11, 2023
1 parent fee6048 commit e97ce28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 2023/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const BACKDROPS = [
"iNimbleSloth",
"Mike_Morgan",
"Ecthelias",
"Kizeren Killeshan",
];
let last_screen = "screen-user-mobile";
let username, password;
Expand All @@ -34,7 +35,6 @@ let transactions = [];
let miners = [];
let enabledItems = JSON.parse(localStorage.getItem("enabledItems")) || VISUAL_ITEMS;


let login_backdrop = BACKDROPS[Math.floor(Math.random() * BACKDROPS.length)];
if (on_mobile()) {
$("#backdrop-mobile").css("background-image",
Expand Down Expand Up @@ -2814,4 +2814,4 @@ function md5_ii(d, _, m, f, r, i, n) { return md5_cmn(m ^ (_ | ~f), d, _, r, i,

function safe_add(d, _) { var m = (65535 & d) + (65535 & _); return (d >> 16) + (_ >> 16) + (m >> 16) << 16 | 65535 & m }

function bit_rol(d, _) { return d << _ | d >>> 32 - _ }
function bit_rol(d, _) { return d << _ | d >>> 32 - _ }

0 comments on commit e97ce28

Please sign in to comment.