Skip to content

Commit

Permalink
Fix typo in lod2dheatmap: destory -> destroy
Browse files Browse the repository at this point in the history
  • Loading branch information
kbroman committed Jun 9, 2020
1 parent 6ebaf53 commit 4563a2e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## d3panels 1.6.3 (2020-06-08)
## d3panels 1.6.4 (2020-06-08)

- Implemented custom tool tips in order to drop the
[d3-tip]http://labratrevenge.com/d3-tip) library, which is no longer
Expand Down
4 changes: 2 additions & 2 deletions d3panels.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
!function() { // encapsulate d3panels functions
var d3panels = {
version: "1.6.3"
version: "1.6.4"
};
"use strict";

Expand Down Expand Up @@ -1388,7 +1388,7 @@ d3panels.lod2dheatmap = function (chartOpts) {

chart.remove = function () {
svg.remove();
d3panels.tooltip_destory(celltip);
d3panels.tooltip_destroy(celltip);
return null;
}; // return the chart function

Expand Down
2 changes: 1 addition & 1 deletion d3panels.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "d3panels",
"version": "1.6.3",
"version": "1.6.4",
"description": "D3-based graphics panels",
"author": "Karl Broman <[email protected]> (https://kbroman.org)",
"repository": "github:kbroman/d3panels",
Expand Down
2 changes: 1 addition & 1 deletion src/d3panels_top.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
!function() { // encapsulate d3panels functions
var d3panels = {
version: "1.6.3"
version: "1.6.4"
};
2 changes: 1 addition & 1 deletion src/lod2dheatmap.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ d3panels.lod2dheatmap = (chartOpts) ->
# function to remove chart
chart.remove = () ->
svg.remove()
d3panels.tooltip_destory(celltip)
d3panels.tooltip_destroy(celltip)
return null

# return the chart function
Expand Down

0 comments on commit 4563a2e

Please sign in to comment.