From c3a72560f9d8902a77557a4977e44de7f64671fa Mon Sep 17 00:00:00 2001 From: Eric Rosenbaum Date: Mon, 20 Nov 2017 13:42:35 -0500 Subject: [PATCH] Clarify @TODO comment about extension status indicator --- src/extensions/scratch3_music/index.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/extensions/scratch3_music/index.js b/src/extensions/scratch3_music/index.js index ab461441f..b209e3cde 100644 --- a/src/extensions/scratch3_music/index.js +++ b/src/extensions/scratch3_music/index.js @@ -45,9 +45,7 @@ class Scratch3MusicBlocks { /** * Download and decode the full set of drum sounds, and store the audio buffers * in the drum buffers array. - * @TODO: Also load the instrument sounds here (rename this fn), and use Promise.all - * to detect that all the assets have loaded in order to update the extension status - * indicator. + * @TODO: Also load the instrument sounds here (rename this fn) */ _loadAllDrumSounds () { const loadingPromises = []; @@ -56,7 +54,7 @@ class Scratch3MusicBlocks { loadingPromises.push(promise); }); Promise.all(loadingPromises).then(() => { - // done! + // @TODO: Update the extension status indicator. }); }