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

1234567891011121314
  1. if ($('#no-cookies')) {
  2. cookie.set('cookie_test', 1, 1);
  3. if (cookie.get('cookie_test') != null) {
  4. cookie.del('cookie_test');
  5. } else {
  6. $('#no-cookies').gshow();
  7. }
  8. }
  9. $(() => {
  10. if ($('#bg_data')) {
  11. $('#content')[0].style.backgroundImage = "url(/misc/bg/"+$('#bg_data')[0].attributes.bg.value+")";
  12. }
  13. })