Skip to content

Commit dec73ee

Browse files
committed
- fix typo
- bump version
1 parent 9e71718 commit dec73ee

6 files changed

Lines changed: 12 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Logs
22

3+
## v0.5.7
4+
5+
- fix typo
6+
7+
38
## v0.5.6
49

510
- monitor ops state and disconnect if submitop fails

dist/sharehub.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
return watchdog.hash = {};
2828
},
2929
check: function(){
30-
var ref$, now, min, k, v, ref1$;
30+
var ref$, now, min, k, v, ref1$, this$ = this;
3131
ref$ = [Date.now(), -1], now = ref$[0], min = ref$[1];
3232
for (k in ref$ = this.hash) {
3333
v = ref$[k];
@@ -44,7 +44,7 @@
4444
}
4545
if (min >= 0) {
4646
return this.hdr = setTimeout(function(){
47-
return this.check();
47+
return this$.check();
4848
}, min);
4949
}
5050
},

dist/sharehub.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dist/**/*"
99
],
1010
"description": "access scoped data via piped operational transformation",
11-
"version": "0.5.6",
11+
"version": "0.5.7",
1212
"homepage": "https://github.com/plotdb/datahub",
1313
"repository": {
1414
"type": "git",

src/sharehub.ls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ sharehub = (o={}) ->
2626
if @hdr =>
2727
clearTimeout @hdr
2828
@hdr = null
29-
if min >= 0 => @hdr = setTimeout (->@check!), min
29+
if min >= 0 => @hdr = setTimeout (~>@check!), min
3030
track: ~>
3131
if @ews and @ews.status and @ews.status! != 2 => return 0
3232
tid = ++watchdog.count

0 commit comments

Comments
 (0)