This is an automated email from the ASF dual-hosted git repository.
wangzx pushed a commit to branch fix/tooltip/pointer-events
in repository https://gitbox.apache.org/repos/asf/echarts.git
The following commit(s) were added to refs/heads/fix/tooltip/pointer-events by
this push:
new fc07eba fix(tooltip): fix a typo `pointer-event` -> `pointer-events`.
fc07eba is described below
commit fc07ebaa518be1dc569803166b0acb4866eb487b
Author: plainheart <[email protected]>
AuthorDate: Sat Jun 26 09:25:51 2021 +0800
fix(tooltip): fix a typo `pointer-event` -> `pointer-events`.
---
src/component/tooltip/TooltipHTMLContent.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/component/tooltip/TooltipHTMLContent.ts
b/src/component/tooltip/TooltipHTMLContent.ts
index 7d70c1b..6ee2664 100644
--- a/src/component/tooltip/TooltipHTMLContent.ts
+++ b/src/component/tooltip/TooltipHTMLContent.ts
@@ -388,7 +388,7 @@ class TooltipHTMLContent {
// stop, "unfocusAdjacency". Here `pointer-events: none` is
used to solve
// it. Although it is not supported by IE8~IE10, fortunately
it is a rare
// scenario.
- + `;pointer-event:${this._enterable ? 'auto' : 'none'}`;
+ + `;pointer-events:${this._enterable ? 'auto' : 'none'}`;
}
this._show = true;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]