@domoinc/image-tooltip
Advanced tools
Comparing version 0.0.10 to 0.0.11
{ | ||
"name": "@domoinc/image-tooltip", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"description": "ImageTooltip - Domo Widget", | ||
@@ -5,0 +5,0 @@ "main": "dist/bundle.js", |
@@ -53,20 +53,4 @@ /*---------------------------------------------------------------------------------- | ||
widget.prepareForArtboard = function() { | ||
if (widget.base) { | ||
widget.base.selectAll('[id^=chartBounds]') | ||
.remove(); | ||
widget.base.insert('rect', ':first-child') | ||
.attr('id', 'chartBounds') | ||
.attr({ | ||
height: widget.c('height'), | ||
width: widget.c('width') | ||
}) | ||
.style('fill', 'none'); | ||
widget.base.select('.image') | ||
.remove(); | ||
} | ||
}; | ||
// Return widget so to keep the methods chainable. | ||
return widget; | ||
}); |
2397045
55012