]> BookStack Code Mirror - bookstack/blobdiff - resources/js/app.js
Search: Prevented negated terms filling in UI inputs
[bookstack] / resources / js / app.js
index 123d6c8f5cd55ef30f9403f961db3d5532ab46e2..7f4bbe54d639e58db5811a4f3a0b3c84265517b9 100644 (file)
@@ -1,9 +1,12 @@
-import * as events from './services/events';
-import * as httpInstance from './services/http';
+import {EventManager} from './services/events.ts';
+import {HttpManager} from './services/http.ts';
 import Translations from './services/translations';
 import * as componentMap from './components';
 import {ComponentStore} from './services/components.ts';
 
 import Translations from './services/translations';
 import * as componentMap from './components';
 import {ComponentStore} from './services/components.ts';
 
+// eslint-disable-next-line no-underscore-dangle
+window.__DEV__ = false;
+
 // Url retrieval function
 window.baseUrl = function baseUrl(path) {
     let targetPath = path;
 // Url retrieval function
 window.baseUrl = function baseUrl(path) {
     let targetPath = path;
@@ -20,8 +23,8 @@ window.importVersioned = function importVersioned(moduleName) {
 };
 
 // Set events and http services on window
 };
 
 // Set events and http services on window
-window.$http = httpInstance;
-window.$events = events;
+window.$http = new HttpManager();
+window.$events = new EventManager();
 
 // Translation setup
 // Creates a global function with name 'trans' to be used in the same way as the Laravel translation system
 
 // Translation setup
 // Creates a global function with name 'trans' to be used in the same way as the Laravel translation system