From 4ec082deba698c64bba483ba6cfb9a6adcf70150 Mon Sep 17 00:00:00 2001 From: zepumph Date: Thu, 23 May 2019 16:27:32 -0800 Subject: [PATCH] rename cacheBuster -> cacheBust, https://github.com/phetsims/chipper/issues/759 --- js/kite-config.js | 2 +- js/kite-test-config.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/kite-config.js b/js/kite-config.js index 5aa5391..d855d6c 100644 --- a/js/kite-config.js +++ b/js/kite-config.js @@ -27,6 +27,6 @@ require.config( { REPOSITORY: '..' }, - // optional cache buster to make browser refresh load all included scripts, can be disabled with ?cacheBuster=false + // optional cache bust to make browser refresh load all included scripts, can be disabled with ?cacheBust=false urlArgs: 'bust=' + ( new Date() ).getTime() } ); diff --git a/js/kite-test-config.js b/js/kite-test-config.js index 431e85f..fcbf6de 100644 --- a/js/kite-test-config.js +++ b/js/kite-test-config.js @@ -42,6 +42,6 @@ require.config( { TANDEM: '../../tandem/js' }, - // optional cache buster to make browser refresh load all included scripts, can be disabled with ?cacheBuster=false - urlArgs: phet.chipper.getCacheBusterArgs() + // optional cache bust to make browser refresh load all included scripts, can be disabled with ?cacheBust=false + urlArgs: phet.chipper.getCacheBustArgs() } );