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 495B

123456789101112131415161718
  1. $(() => {
  2. if ($('[name=bg_data]')) {
  3. $('#content')[0].style.backgroundImage = "url(/misc/bg/"+$('[name=bg_data]')[0].attributes.content.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 (location.protocol != 'https:') {
  14. alert("This Gazelle installation will not be functional unless accessed over HTTPS");
  15. }
  16. })