Skip to content

Commit

Permalink
Merge branch 'release/2.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
BigFatDog committed Dec 8, 2018
2 parents 730e314 + 2a457ee commit ac1d050
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vizart-core",
"version": "2.0.3",
"version": "2.0.4",
"description": "Core Components for VizArt",
"main": "dist/vizart-core.js",
"module": "dist/vizart-core.esm.js",
Expand Down
2 changes: 2 additions & 0 deletions src/api/renderCanvas.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const apiRender = state => ({
const frontCanvas = select(containerId)
.append('canvas')
.attr('id', frontCanvasId)
.style('position', 'absolute')
.style('display', 'block')
.style('width', opts.chart.innerWidth + 'px')
.style('height', opts.chart.innerHeight + 'px')
Expand All @@ -33,6 +34,7 @@ const apiRender = state => ({
const hiddenCanvas = select(containerId)
.append('canvas')
.attr('id', hiddenCanvasId)
.style('position', 'absolute')
.style('display', 'none')
.style('width', opts.chart.innerWidth + 'px')
.style('height', opts.chart.innerHeight + 'px')
Expand Down

0 comments on commit ac1d050

Please sign in to comment.