(canvas)
| 92180 | }; |
| 92181 | var Tooltip = function() { |
| 92182 | function Tooltip1(canvas) { |
| 92183 | (0, _classCallCheckDefault.default)(this, Tooltip1); |
| 92184 | var canvasParent = canvas.parentElement; |
| 92185 | if (canvasParent) { |
| 92186 | this.el = document.createElement("div"); |
| 92187 | this.el.className = "deck-tooltip"; |
| 92188 | Object.assign(this.el.style, defaultStyle); |
| 92189 | canvasParent.appendChild(this.el); |
| 92190 | } |
| 92191 | } |
| 92192 | (0, _createClassDefault.default)(Tooltip1, [ |
| 92193 | { |
| 92194 | key: "setTooltip", |
nothing calls this directly
no outgoing calls
no test coverage detected