aboutsummaryrefslogtreecommitdiff
path: root/src/client/js/main.js
blob: 04ccfd0ff69cb6228196183936c39ca938ab06ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Remove search query
window.history.pushState(
  {
    html: document.documentElement.innerHTML,
    pageTitle: document.title
  },
  '',
  document.location.pathname + document.location.hash
);

var app = Elm.Main.fullscreen({
  time: new Date().getTime(),
  translations: JSON.parse(document.getElementById('translations').innerHTML),
  conf: JSON.parse(document.getElementById('conf').innerHTML),
  result: JSON.parse(document.getElementById('result').innerHTML)
});