diff options
author | bobzel <zzzman@gmail.com> | 2019-09-23 13:30:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-23 13:30:11 -0400 |
commit | 87407e68556db6f0c8641baf6b6d6dba98e4bbc5 (patch) | |
tree | 6c41e6f5be3645060e6515f0ffc531c2585e2d6e /src/client/goldenLayout.js | |
parent | c2dff9d46071952c6fca450952bcb0952a9bba86 (diff) | |
parent | 910a3de2c294b1f5e074eef3cbfe043462ef22dd (diff) |
Merge pull request #281 from browngraphicslab/doc_deco_claire
Automatically scroll to target when following a link to a text region (#268)
Diffstat (limited to 'src/client/goldenLayout.js')
-rw-r--r-- | src/client/goldenLayout.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/goldenLayout.js b/src/client/goldenLayout.js index ad78139c1..29b750720 100644 --- a/src/client/goldenLayout.js +++ b/src/client/goldenLayout.js @@ -377,7 +377,7 @@ this._nOriginalY = coordinates.y; this._oDocument.on('mousemove touchmove', this._fMove); - this._oDocument.one('mouseup touchend', this._fUp); + this._oDocument.on('mouseup touchend', this._fUp); this._timeout = setTimeout(lm.utils.fnBind(this._startDrag, this), this._nDelay); } |