Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

Commit

Permalink
Merge pull request #54 from datavisyn/release-1.1.1
Browse files Browse the repository at this point in the history
Release 1.1.1
  • Loading branch information
Anita Steiner authored Jan 13, 2020
2 parents 8514826 + 85a812a commit 39c1835
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ jobs:
build:
working_directory: ~/datavisyn
docker:
- image: circleci/node:8-browsers
- image: circleci/node:12.13-buster-browsers
steps:
- checkout
- restore_cache:
key: deps3-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
key: deps3-{{ .Branch }}-{{ checksum "package.json" }}
- run:
name: install-npm-wee
command: npm install
- save_cache:
key: deps3-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
key: deps3-{{ .Branch }}-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datavisyn-scatterplot",
"version": "1.1.0",
"version": "1.1.1",
"description": "a canvas based scatterplot implementation",
"homepage": "https://datavisyn.io",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/tooltip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function showTooltip(parent: HTMLElement, items:any[], x:number,
if (items.length === 0) {
if (tooltip) {
//hide tooltip
tooltip.style.display = null;
tooltip.style.display = '';
}
return;
}
Expand Down

0 comments on commit 39c1835

Please sign in to comment.