From cd44ab2a3c5ff5c2012199dca8a4ee92a8772609 Mon Sep 17 00:00:00 2001 From: Nulo Date: Thu, 18 Nov 2021 12:47:13 -0300 Subject: [PATCH] env.js: poner puntos y comas en variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit En ciertos casos, esto podía generar JS inválido rompiendo el sitio. --- env.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/env.js b/env.js index ea9850c..cdd0683 100644 --- a/env.js +++ b/env.js @@ -6,7 +6,7 @@ window.env = { AIRBRAKE_PROJECT_KEY: '{{ site.env.AIRBRAKE_PROJECT_KEY }}', JEKYLL_ENV: '{{ site.env.JEKYLL_ENV }}', SPREE_URL: '{{ site.env.SPREE_URL }}' -} +}; {% comment %} Genera un site.json con las traducciones del sitio y los datos de los @@ -25,7 +25,7 @@ window.site = { }, {%- endfor -%} "i18n": {{ site.i18n | jsonify }} -} +}; {%- comment -%} Para agregar plantillas que se procesan con JS, las agregamos en @@ -50,4 +50,4 @@ window.templates = { "payment_methods": {{ payment_methods | jsonify }}, "recover_order": {{ recover_order | jsonify }}, "shipping_methods": {{ shipping_methods | jsonify }}, -} +};