Skip to content

Commit

Permalink
v4.0.4
Browse files Browse the repository at this point in the history
v4.0.4
  • Loading branch information
colxi committed Jul 7, 2019
1 parent cd99d93 commit 1f64e99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "midi-parser-js",
"description": "JSON Human readable MIDI sequences. Read from ArrayBuffers, Base64 encoded strings, or FileInput Element in Browsers.",
"version": "4.0.3",
"version": "4.0.4",
"main" : "./src/main.js",
"keywords": [
"midi json",
Expand Down
2 changes: 1 addition & 1 deletion src/midi-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let _global = typeof window === 'object' && window.self === window && window ||
typeof global === 'object' && global.global === global && global;

// retrieve a copy of the MidiParser reference and store it
let _MidiParser = window.MidiParser;
let _MidiParser = _global.MidiParser;

// delete the global scope reference
delete _global.MidiParser;
Expand Down

0 comments on commit 1f64e99

Please sign in to comment.