X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/2f6ff0734773c4ac009de699a2661971fd585b22..refs/pull/3000/head:/resources/js/index.js diff --git a/resources/js/index.js b/resources/js/index.js index 913313603..ffdb54e19 100644 --- a/resources/js/index.js +++ b/resources/js/index.js @@ -7,11 +7,10 @@ window.baseUrl = function(path) { }; // Set events and http services on window -import Events from "./services/events" +import events from "./services/events" import httpInstance from "./services/http" -const eventManager = new Events(); window.$http = httpInstance; -window.$events = eventManager; +window.$events = events; // Translation setup // Creates a global function with name 'trans' to be used in the same way as Laravel's translation system @@ -19,6 +18,7 @@ import Translations from "./services/translations" const translator = new Translations(); window.trans = translator.get.bind(translator); window.trans_choice = translator.getPlural.bind(translator); +window.trans_plural = translator.parsePlural.bind(translator); // Load Components import components from "./components"