X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/634b0aaa07097f4a413a85e7c172176dda8e42e1..refs/pull/5239/head:/resources/js/app.js diff --git a/resources/js/app.js b/resources/js/app.js index 812a451f2..7f4bbe54d 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -1,9 +1,12 @@ import {EventManager} from './services/events.ts'; -import * as httpInstance from './services/http'; +import {HttpManager} from './services/http.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; @@ -20,7 +23,7 @@ window.importVersioned = function importVersioned(moduleName) { }; // Set events and http services on window -window.$http = httpInstance; +window.$http = new HttpManager(); window.$events = new EventManager(); // Translation setup