From b775c2b440bea5391f757ad328b3dfb14b8a5e91 Mon Sep 17 00:00:00 2001 From: zepumph Date: Fri, 8 Jul 2022 16:55:48 -0600 Subject: [PATCH] rename enhanced sound -> extra sound, https://github.com/phetsims/tambo/issues/165 --- js/initialize-globals.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/js/initialize-globals.js b/js/initialize-globals.js index e03266977..c6e34ba82 100644 --- a/js/initialize-globals.js +++ b/js/initialize-globals.js @@ -158,11 +158,11 @@ eall: { type: 'flag' }, /** - * Controls whether enhanced sound is on or off at startup (user can change later). This query parameter is public + * Controls whether extra sound is on or off at startup (user can change later). This query parameter is public * facing. * @type {boolean} */ - enhancedSoundInitiallyEnabled: { + extraSoundInitiallyEnabled: { type: 'boolean', defaultValue: false, public: true @@ -665,15 +665,15 @@ }, /** - * Indicates whether enhanced sounds are used in addition to basic sounds as part of the sound design. If true, the - * PhET menu will have an option for enabling enhanced sounds. This will be ignored if sound is not generally + * Indicates whether extra sounds are used in addition to basic sounds as part of the sound design. If true, the + * PhET menu will have an option for enabling extra sounds. This will be ignored if sound is not generally * enabled (see ?supportsSound). * * Primarily for internal use, though we may share links with collaborates that use this parameter. */ - supportsEnhancedSound: { + supportsExtraSound: { type: 'boolean', - defaultValue: !!packageSimFeatures.supportsEnhancedSound + defaultValue: !!packageSimFeatures.supportsExtraSound }, /**