diff options
author | Joris | 2015-11-01 11:58:42 +0100 |
---|---|---|
committer | Joris | 2015-11-01 11:58:42 +0100 |
commit | c015db01e2acee9d1fc83cd6a762d0a3e629b353 (patch) | |
tree | 9e6b8f5fa04a3ce6cca51f5cae4cc8fbf6a0f5ed /public | |
parent | d3e045e8034c5473964c0529ffc1e181311842c2 (diff) |
Use in client the real currency set in config.txt
Diffstat (limited to 'public')
-rw-r--r-- | public/javascripts/elmLauncher.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/public/javascripts/elmLauncher.js b/public/javascripts/elmLauncher.js index ef5d86d..bdcb479 100644 --- a/public/javascripts/elmLauncher.js +++ b/public/javascripts/elmLauncher.js @@ -1,7 +1,8 @@ Elm.fullscreen(Elm.Main, { signInError: getParameterByName('signInError'), initialTime: new Date().getTime(), - translations: document.getElementById('messages').innerHTML + translations: document.getElementById('messages').innerHTML, + config: document.getElementById('config').innerHTML }); function getParameterByName(name) { |