Skip to content

Commit 0459018

Browse files
committed
small tab fix
1 parent 979aa1b commit 0459018

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

js/midi/plugin.webmidi.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@
7878
plugin = access;
7979
var pluginOutputs = plugin.outputs;
8080
if (typeof pluginOutputs == 'function') { // Chrome pre-43
81-
output = pluginOutputs()[0];
81+
output = pluginOutputs()[0];
8282
} else { // Chrome post-43
83-
output = pluginOutputs[0];
83+
output = pluginOutputs[0];
8484
}
8585
if (output === undefined) { // nothing there...
86-
errFunction();
86+
errFunction();
8787
} else {
88-
opts.onsuccess && opts.onsuccess();
88+
opts.onsuccess && opts.onsuccess();
8989
}
9090
}, errFunction);
9191
};

0 commit comments

Comments
 (0)