diff options
Diffstat (limited to 'src/js/app.js')
-rw-r--r-- | src/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/app.js b/src/js/app.js index e463f75..00fc13a 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -13,7 +13,7 @@ var tpl = { var loadTemplate = function (index) { var name = names[index]; console.log('Loading template: ' + name + ', index: ' + index); - $.get('templates/en/' + name + '.html', function (data) { + $.get('templates/' + CONFIG.LANGUAGE + '/' + name + '.html', function (data) { that.templates[name] = data; index++; if (index < names.length) { |