Skip to content
Snippets Groups Projects
Commit aaee07d7 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

debug param is processed from get params

parent 5056ad61
No related branches found
No related tags found
1 merge request!7Resolve "info about loading data from server"
......@@ -198,6 +198,9 @@ function initGlobals(params) {
logger.setLevel("info");
}
GuiConnector.init();
if (GuiConnector.getParams['debug'] !== undefined) {
logger.setLevel("debug");
}
} else {
logger.warn("global GuiConnector found");
}
......@@ -230,7 +233,7 @@ function getProject(params) {
};
function create(params) {
var customMap;
var leftPanel;
var topMenu;
......@@ -244,7 +247,6 @@ function create(params) {
params.setProject(project);
var element = params.getElement();
verifyBrowser();
processUrlGetParams(params);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment