@gemx-dev/clarity-visualize 0.8.60 → 0.8.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -417,6 +417,7 @@ function createParentWindowCanvas(iframeDoc, portalCanvasId) {
|
|
|
417
417
|
if (canvas_1 === null) {
|
|
418
418
|
canvas_1 = parentDoc.createElement('canvas');
|
|
419
419
|
canvas_1.id = canvasId;
|
|
420
|
+
canvas_1.classList.add("clarity-heatmap-canvas" /* Constant.HeatmapCanvas */);
|
|
420
421
|
canvas_1.width = 0;
|
|
421
422
|
canvas_1.height = 0;
|
|
422
423
|
canvas_1.style.position = "absolute" /* Constant.Absolute */;
|
|
@@ -806,6 +807,7 @@ var HeatmapHelper = /** @class */ (function () {
|
|
|
806
807
|
if (canvas === null) {
|
|
807
808
|
canvas = doc.createElement("CANVAS" /* Constant.Canvas */);
|
|
808
809
|
canvas.id = "clarity-heatmap-canvas" /* Constant.HeatmapCanvas */;
|
|
810
|
+
canvas.classList.add("clarity-heatmap-canvas" /* Constant.HeatmapCanvas */);
|
|
809
811
|
canvas.width = 0;
|
|
810
812
|
canvas.height = 0;
|
|
811
813
|
canvas.style.position = "absolute" /* Constant.Absolute */;
|