Skip to content

Commit

Permalink
refactor: restructure guest module
Browse files Browse the repository at this point in the history
  • Loading branch information
dewanakl committed Jan 4, 2025
1 parent ed4b92a commit b836c48
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion js/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { util } from './util.js';
import { guest } from './guest.js';
import { theme } from './theme.js';
import { comment } from './comment.js';
import { guest } from './guest/guest.js';

document.addEventListener('DOMContentLoaded', () => {
guest.init();
Expand Down
File renamed without changes.
16 changes: 8 additions & 8 deletions js/guest.js → js/guest/guest.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { util } from './util.js';
import { util } from '../util.js';
import { audio } from './audio.js';
import { theme } from './theme.js';
import { session } from './session.js';
import { storage } from './storage.js';
import { comment } from './comment.js';
import { offline } from './offline.js';
import { theme } from '../theme.js';
import { session } from '../session.js';
import { storage } from '../storage.js';
import { comment } from '../comment.js';
import { offline } from '../offline.js';
import { progress } from './progress.js';
import { confetti } from './libs/confetti.js';
import { bootstrap } from './libs/bootstrap.js';
import { confetti } from '../libs/confetti.js';
import { bootstrap } from '../libs/bootstrap.js';

export const guest = (() => {

Expand Down
File renamed without changes.

0 comments on commit b836c48

Please sign in to comment.