Skip to content

Commit 480cec3

Browse files
author
Leone, Mark A [Axios]
committed
Bump version to rc19 for npm publish
1 parent 054b3e5 commit 480cec3

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

js/sigplot.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -2459,7 +2459,7 @@
24592459
*
24602460
*/
24612461

2462-
overlay_wpipe: function (wsurl, overrides, layerOptions, fps) {
2462+
overlay_wpipe: function(wsurl, overrides, layerOptions, fps) {
24632463
let plot = this;
24642464
let wpipe = {
24652465
hcb: null,
@@ -2472,7 +2472,7 @@
24722472

24732473
m.log.debug("Overlay websocket: " + wsurl);
24742474

2475-
wpipe.ws.onopen = function (evt) {
2475+
wpipe.ws.onopen = function(evt) {
24762476
wpipe.ws.send(
24772477
JSON.stringify({
24782478
event: "open",
@@ -2485,8 +2485,8 @@
24852485
);
24862486
};
24872487

2488-
wpipe.ws.onmessage = (function (theSocket) {
2489-
return function (evt) {
2488+
wpipe.ws.onmessage = (function(theSocket) {
2489+
return function(evt) {
24902490
if (typeof evt.data === "string") {
24912491
var msg = JSON.parse(evt.data);
24922492

@@ -2520,8 +2520,8 @@
25202520
try {
25212521
wpipe.hcb = m.initialize(null, wpipe.hcb);
25222522
wpipe.layer_n = plot.overlay_bluefile(wpipe.hcb, wpipe.plotLayerOptions);
2523-
} catch {
2524-
wpipe.ws.close();
2523+
} catch (e) {
2524+
wpipe.ws.close();
25252525
}
25262526
} else if (msg.event === "error") {
25272527
m.log.error(msg);

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sigplot",
33
"description": "Advanced plotting for signal processing applications",
4-
"version": "2.0.0-rc18",
4+
"version": "2.0.0-rc19",
55
"homepage": "http://sigplot.lgsinnovations.com",
66
"main": "js/sigplot.js",
77
"files": [

0 commit comments

Comments
 (0)