Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function() {
- 'use strict';
- document.addEventListener('DOMContentLoaded', function() {
- const boardlist = document.querySelector('.boardlist');
- if (boardlist) {
- boardlist.addEventListener('click', function(event) {
- if (event.target.matches('a')) {
- return;
- }
- let redirectUrl = 'https://ziemniachan.org';
- // Check if we're on the mod page
- if (window.location.pathname.startsWith('/mod.php')) {
- redirectUrl += '/mod.php?/b/index.html';
- } else {
- redirectUrl += '/b/index.html';
- }
- window.location.href = redirectUrl;
- });
- }
- });
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement