diff options
author | Joakim Reinert <mail@jreinert.com> | 2015-05-04 00:58:50 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-05-05 16:44:10 +0200 |
commit | c897aa84567ba046644a87e23b32f3df4c5845d3 (patch) | |
tree | 0f98f9b4475e485e86e9fd666cc295e9fb7bcd04 /application/views/header.php | |
parent | 0cbb8802555ad6e81f42ce8738842854d0556296 (diff) |
Set cache buster for js with urlArgs setting
No more need for timestamp in filename of minified main js
Diffstat (limited to 'application/views/header.php')
-rw-r--r-- | application/views/header.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/application/views/header.php b/application/views/header.php index f80ffed05..6e7ef3a92 100644 --- a/application/views/header.php +++ b/application/views/header.php @@ -32,8 +32,9 @@ if (is_cli_client() && !isset($force_full_html)) { window.appConfig = {}; require.config({ baseUrl: '/data/js', + urlArgs: '<?php echo js_cache_buster(); ?>', paths: { - 'main': ['<?php echo main_min_js_name(); ?>', 'main'] + 'main': ['main.min', 'main'] } }); require(['main']); |