From a940b8114f99e1a56378815028f4680b2ec1566f Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 14 Dec 2018 20:45:22 +0100 Subject: Revert "append version to frequently changed resources to avoid caching issues" Cache Busting via query string is discouraged This reverts commit 604a55632c5651a40a828734de313ad1dcf47efa. --- templates/layouts/default.html.ep | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'templates/layouts/default.html.ep') diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index 146c3c0..163955b 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -9,16 +9,16 @@ % } - %= stylesheet "/static/default.css?v=${version}" + %= stylesheet '/static/default.css' %= stylesheet '/static/jquery-ui.min.css' % my $force_mobile = param('force_mobile') // -1; % if ($force_mobile == 1 or ($self->browser->mobile and $force_mobile != 0)) { - %= stylesheet "/static/mobile.css?v=${version}" + %= stylesheet '/static/mobile.css' % } %if (stash('load_marquee')) { %= javascript '/static/jquery-1.10.2.min.js' %= javascript '/static/jquery-ui.min.js' - %= javascript "/static/dbf.min.js?v=${version}" + %= javascript '/static/dbf.min.js' %= javascript '/static/marquee.min.js' %= javascript begin $(function () { $('marquee').marquee() }); @@ -26,7 +26,7 @@ % } else { %= javascript '/static/jquery-1.10.2.min.js', defer => undef %= javascript '/static/jquery-ui.min.js', defer => undef - %= javascript "/static/dbf.min.js?v=${version}", defer => undef + %= javascript '/static/dbf.min.js', defer => undef % } % if (stash('with_geolocation')) { %= javascript '/static/geolocation.min.js', defer => undef -- cgit v1.2.3