|
@@ -1,21 +1,21 @@
|
|
|
-import alpineInit from './alpineInit.js';
|
|
|
|
|
-import focusFirstInput from './focusFirstInput.js';
|
|
|
|
|
-import handleConfirmationDialogs from './confirmationDialog.js';
|
|
|
|
|
-import handleCopyCreds from './copyCreds.js';
|
|
|
|
|
-import handleCronGenerator from './cronGenerator.js';
|
|
|
|
|
-import handleDiscardAllMail from './discardAllMail.js';
|
|
|
|
|
-import handleErrorMessage from './errorHandler.js';
|
|
|
|
|
-import handleListSelectAll from './listSelectAll.js';
|
|
|
|
|
-import handleListSorting from './listSorting.js';
|
|
|
|
|
-import handleLoadingSpinner from './loadingSpinner.js';
|
|
|
|
|
-import handleNameServerInput from './nameServerInput.js';
|
|
|
|
|
-import handlePasswordInput from './passwordInput.js';
|
|
|
|
|
-import handleShortcuts from './shortcuts.js';
|
|
|
|
|
-import handleStickyToolbar from './stickyToolbar.js';
|
|
|
|
|
-import handleTabPanels from './tabPanels.js';
|
|
|
|
|
-import handleToggleAdvanced from './toggleAdvanced.js';
|
|
|
|
|
-import handleUnlimitedInput from './unlimitedInput.js';
|
|
|
|
|
-import * as helpers from './helpers.js';
|
|
|
|
|
|
|
+import alpineInit from './alpineInit';
|
|
|
|
|
+import focusFirstInput from './focusFirstInput';
|
|
|
|
|
+import handleConfirmationDialogs from './confirmationDialog';
|
|
|
|
|
+import handleCopyCreds from './copyCreds';
|
|
|
|
|
+import handleCronGenerator from './cronGenerator';
|
|
|
|
|
+import handleDiscardAllMail from './discardAllMail';
|
|
|
|
|
+import handleErrorMessage from './errorHandler';
|
|
|
|
|
+import handleFormSubmit from './formSubmit';
|
|
|
|
|
+import handleListSelectAll from './listSelectAll';
|
|
|
|
|
+import handleListSorting from './listSorting';
|
|
|
|
|
+import handleNameServerInput from './nameServerInput';
|
|
|
|
|
+import handlePasswordInput from './passwordInput';
|
|
|
|
|
+import handleShortcuts from './shortcuts';
|
|
|
|
|
+import handleStickyToolbar from './stickyToolbar';
|
|
|
|
|
+import handleTabPanels from './tabPanels';
|
|
|
|
|
+import handleToggleAdvanced from './toggleAdvanced';
|
|
|
|
|
+import handleUnlimitedInput from './unlimitedInput';
|
|
|
|
|
+import * as helpers from './helpers';
|
|
|
|
|
|
|
|
window.Hestia = { helpers };
|
|
window.Hestia = { helpers };
|
|
|
|
|
|
|
@@ -27,9 +27,9 @@ function initListeners() {
|
|
|
handleCopyCreds();
|
|
handleCopyCreds();
|
|
|
handleCronGenerator();
|
|
handleCronGenerator();
|
|
|
handleDiscardAllMail();
|
|
handleDiscardAllMail();
|
|
|
|
|
+ handleFormSubmit();
|
|
|
handleListSelectAll();
|
|
handleListSelectAll();
|
|
|
handleListSorting();
|
|
handleListSorting();
|
|
|
- handleLoadingSpinner();
|
|
|
|
|
handleNameServerInput();
|
|
handleNameServerInput();
|
|
|
handlePasswordInput();
|
|
handlePasswordInput();
|
|
|
handleStickyToolbar();
|
|
handleStickyToolbar();
|