Skip to content

Commit

Permalink
lint fixes, see #39
Browse files Browse the repository at this point in the history
  • Loading branch information
jbphet committed Oct 14, 2019
1 parent 464b33d commit 3028166
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions js/Sound.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ define( function( require ) {

// modules
var Display = require( 'SCENERY/display/Display' );
var platform = require( 'PHET_CORE/platform' );
var empty = require( 'audio!VIBE/empty.mp3' );
var Property = require( 'AXON/Property' );
var vibe = require( 'VIBE/vibe' );

Expand Down Expand Up @@ -209,7 +207,7 @@ define( function( require ) {
.then( function(){
removeUserInteractionListeners();
} )
.catch( function(){
.catch( function( err ){
var errorMessage = 'error when trying to resume audio context, err = ' + err;
console.error( errorMessage );
assert && alert( errorMessage );
Expand Down

0 comments on commit 3028166

Please sign in to comment.