We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d9fb37 commit 7f24887Copy full SHA for 7f24887
1 file changed
src/Tracy/assets/Bar/bar.js
@@ -41,15 +41,22 @@
41
handles: elem.querySelectorAll('h1'),
42
start: function() {
43
_this.toFloat();
44
+ _this.focus();
45
}
46
});
47
- elem.addEventListener('mouseover', function(e) {
48
+ elem.addEventListener('mousedown', function(e) {
49
if (isTargetChanged(e.relatedTarget, this)) {
50
_this.focus();
51
52
53
54
+ elem.addEventListener('mouseover', function(e) {
55
+ if (isTargetChanged(e.relatedTarget, this)) {
56
+ clearTimeout(elem.Tracy.displayTimeout);
57
+ }
58
+ });
59
+
60
elem.addEventListener('mouseout', function(e) {
61
62
_this.blur();
0 commit comments