Skip to content

Commit 3fb6754

Browse files
committed
Merge branch 'master' of github.com:ropensci/plotly into fix/subplot
2 parents 70ca674 + 03d3e54 commit 3fb6754

File tree

4 files changed

+53
-39
lines changed

4 files changed

+53
-39
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: plotly
22
Title: Create Interactive Web Graphics via 'plotly.js'
3-
Version: 3.4.7
3+
Version: 3.4.9
44
Authors@R: c(person("Carson", "Sievert", role = c("aut", "cre"),
55
email = "[email protected]"),
66
person("Chris", "Parmer", role = c("aut", "cph"),

NEWS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
3.4.9 -- 25 Mar 2016
2+
3+
BUGFIX:
4+
5+
Upgrade to plotlyjs 1.7.0. Fixes #513
6+
7+
8+
3.4.8 -- 23 Mar 2016
9+
10+
BUGFIX:
11+
12+
* Safeguard against null fields in selections. See #530.
13+
114
3.4.7 -- 19 Mar 2016
215

316
BUGFIX:

inst/htmlwidgets/lib/plotlyjs/plotly-latest.min.js

Lines changed: 38 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inst/htmlwidgets/plotly.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ HTMLWidgets.widget({
5050
var tr = x.data[pt.curveNumber];
5151
// add on additional trace info, if it exists
5252
attachKey = function(keyName) {
53-
if (tr.hasOwnProperty(keyName)) {
53+
if (tr.hasOwnProperty(keyName) && tr[keyName] !== null) {
5454
if (typeof pt.pointNumber === "number") {
5555
obj[keyName] = tr[keyName][pt.pointNumber];
5656
} else {

0 commit comments

Comments
 (0)