Skip to content

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jazz-soft committed Jun 11, 2020
1 parent 9c0e59d commit 39d758f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ by running `npm remove midi-test --save-dev`.
##### CDN (jsdelivr)

<script src="https://cdn.jsdelivr.net/npm/jzz"></script> // the latest version, or
<script src="https://cdn.jsdelivr.net/npm/jzz@1.0.7"></script> // any particular version
<script src="https://cdn.jsdelivr.net/npm/jzz@1.0.8"></script> // any particular version
//...

##### CDN (unpkg)

<script src="https://unpkg.com/jzz"></script> // the latest version, or
<script src="https://unpkg.com/jzz@1.0.7"></script> // any particular version
<script src="https://unpkg.com/jzz@1.0.8"></script> // any particular version
//...

##### CommonJS (Browserify and Node.js command line applications)
Expand Down
6 changes: 3 additions & 3 deletions javascript/JZZ.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
})(this, function() {

var _scope = typeof window === 'undefined' ? global : window;
var _version = '1.0.7';
var _version = '1.0.8';
var i, j, k, m, n;

var _time = Date.now || function () { return new Date().getTime(); };
Expand Down Expand Up @@ -561,8 +561,8 @@
}

var _jzz;
var _engine = {};
var _virtual = { _outs: [], _ins: []};
var _engine = { _outs: [], _ins: [] };
var _virtual = { _outs: [], _ins: [] };

// Node.js
function _tryNODE() {
Expand Down
2 changes: 1 addition & 1 deletion minified/JZZ.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jzz",
"version": "1.0.7",
"version": "1.0.8",
"description": "MIDI library for Node.js and web-browsers",
"main": "javascript/JZZ.js",
"scripts": {
Expand All @@ -27,7 +27,7 @@
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "^4.0.1",
"midi-test": "^1.1.4",
"mocha": "^7.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"web-midi-test": "^1.0.8"
},
Expand Down

0 comments on commit 39d758f

Please sign in to comment.