fix timeout-popup

This commit is contained in:
Beverly Nguyen
2025-10-08 11:59:30 -07:00
parent ebf1f96403
commit 809c5b5dee
2 changed files with 2 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
window.NotifyModules = window.NotifyModules || {};
window.NotifyModules.TimeoutPopup = window.NotifyModules.TimeoutPopup || {};
(function(window) {

View File

@@ -27,7 +27,6 @@ const javascripts = () => {
paths.src + 'javascripts/preventDuplicateFormSubmissions.js',
paths.src + 'javascripts/errorBanner.js',
paths.src + 'javascripts/notifyModal.js',
paths.src + 'javascripts/timeoutPopup.js',
paths.src + 'javascripts/date.js',
paths.src + 'javascripts/loginAlert.js',
paths.src + 'javascripts/sidenav.js',
@@ -88,6 +87,7 @@ const javascripts = () => {
// Use the mainBundle as the base and append remaining non-transpiled files at the end
return mainBundle
.pipe(plugins.addSrc.append(paths.src + 'javascripts/timeoutPopup.js'))
.pipe(plugins.addSrc.append(paths.src + 'javascripts/listEntry.js'))
.pipe(plugins.addSrc.append(paths.src + 'javascripts/stick-to-window-when-scrolling.js'))
.pipe(plugins.addSrc.append(paths.src + 'javascripts/totalMessagesChart.js'))