diff options
author | kibigo! <marrus-sh@users.noreply.github.com> | 2017-12-07 19:41:57 -0800 |
---|---|---|
committer | kibigo! <marrus-sh@users.noreply.github.com> | 2017-12-10 11:08:04 -0800 |
commit | 1c728df92e46bda2d6823052d2cd7a019246b329 (patch) | |
tree | 63f95a6b6900277a901376a60aaab62d307c8463 /app/views | |
parent | b28cd6769c77190160e4ffefde78b324c7aad269 (diff) |
Only localize js when there's a theme
Diffstat (limited to 'app/views')
-rwxr-xr-x | app/views/layouts/application.html.haml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 4d32c5035..20603678b 100755 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -19,10 +19,11 @@ = title = javascript_pack_tag "locales", integrity: true, crossorigin: 'anonymous' - - if @theme[:supported_locales].include? I18n.locale.to_s - = javascript_pack_tag "locales/#{@theme[:flavour]}/#{I18n.locale}", integrity: true, crossorigin: 'anonymous' - - elsif @theme[:supported_locales].include? 'en' - = javascript_pack_tag "locales/#{@theme[:flavour]}/en", integrity: true, crossorigin: 'anonymous' + - if @theme + - if @theme[:supported_locales].include? I18n.locale.to_s + = javascript_pack_tag "locales/#{@theme[:flavour]}/#{I18n.locale}", integrity: true, crossorigin: 'anonymous' + - elsif @theme[:supported_locales].include? 'en' + = javascript_pack_tag "locales/#{@theme[:flavour]}/en", integrity: true, crossorigin: 'anonymous' = csrf_meta_tags = yield :header_tags |