This commit is contained in:
Quartinal 2025-01-14 07:59:01 -08:00
parent 93e2e9b7cd
commit 43cd58f193
4 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
dist/ dist/
node_modules/ node_modules/
pnpm-lock.yaml pnpm-lock.yaml
.vercel

View File

@ -4,7 +4,7 @@ import {
selectClass, selectClass,
selectId, selectId,
selectTag, selectTag,
} from "./helperFunctions"; } from "./helperFunctions.js";
global.querySelectorAll = document.querySelectorAll; global.querySelectorAll = document.querySelectorAll;

View File

@ -1,4 +1,4 @@
import { selectId, pushStyles, selectTag, addClasslist } from './helperFunctions'; import { selectId, pushStyles, selectTag, addClasslist } from './helperFunctions.js';
$(function() { $(function() {
function toggleVisibility(selector, condition) { function toggleVisibility(selector, condition) {

View File

@ -1,4 +1,4 @@
import { selectId, pushStyles } from "./helperFunctions"; import { selectId, pushStyles } from "./helperFunctions.js";
window.onload = function() { window.onload = function() {
if (!localStorage.getItem('dontShowPopup')) { if (!localStorage.getItem('dontShowPopup')) {