import GUI from '../gui'; import { i18n } from '../localization'; const help = {}; help.initialize = function (callback) { if (GUI.active_tab != 'help') { GUI.active_tab = 'help'; } $('#content').load("./tabs/help.html", function () { i18n.localizePage(); GUI.content_ready(callback); }); }; help.cleanup = function (callback) { if (callback) callback(); }; // TODO: remove when modules are in place window.TABS.help = help; export { help };