Skip to content

Commit

Permalink
Version 39:
Browse files Browse the repository at this point in the history
* Fixed a bug from version 16 where mousedown/touchstart on the seek bar also began digital panning.
  • Loading branch information
bp2008 committed Jul 1, 2018
1 parent 1d500ec commit 7d741ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui3.htm
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
};
</script>
<script type="text/javascript">
var ui_version = "38";
var ui_version = "39";
var bi_version = "%%VERSION%%";
var combined_version = ui_version + "-" + bi_version;
//if (!!navigator.userAgent.match(/ Android /))
Expand Down
2 changes: 1 addition & 1 deletion ui3/ui3.js
Original file line number Diff line number Diff line change
Expand Up @@ -4948,7 +4948,7 @@ function SeekBar()
mouseCoordFixer.fix(e);
if (touchEvents.Gate(e))
return;
self.mouseDown(e);
return self.mouseDown(e);
});
wrapper.on("mouseenter", function (e)
{
Expand Down

0 comments on commit 7d741ef

Please sign in to comment.