Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

public.js 510B

123456789101112131415161718192021
  1. $(() => {
  2. if ($('#bg_data')) {
  3. $('#content')[0].style.backgroundImage = "url(/misc/bg/"+$('#bg_data')[0].attributes.bg.value+")";
  4. }
  5. if ($('#no-cookies')) {
  6. cookie.set('cookie_test', 1, 1);
  7. if (cookie.get('cookie_test') != null) {
  8. cookie.del('cookie_test');
  9. } else {
  10. $('#no-cookies').gshow();
  11. }
  12. }
  13. if ($('#keep2fa')) {
  14. $('#2fa_tr').ghide()
  15. $('#keep2fa')[0].onclick = (e) => {
  16. $('#2fa_tr')[$('#keep2fa')[0].checked ? 'gshow' : 'ghide']()
  17. }
  18. }
  19. })