Skip to content

Commit cdb6ea8

Browse files
committed
Legend marker was not draggable.
1 parent 8f26e3c commit cdb6ea8

File tree

7 files changed

+12
-7
lines changed

7 files changed

+12
-7
lines changed

CHANGELOG_ION.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# plotly.js ION changelog
22

3+
## [1.33.1-ion43] -- 2020-09-11
4+
5+
### Legend scroll marker is not draggable
6+
7+
38
## [1.33.1-ion42] -- 2020-08-04
49

510
### Removed lambda for IE11 support

dist_ion/plotly-ion.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25225,7 +25225,7 @@ module.exports = function draw(gd) {
2522525225
constants.scrollBarMargin + scrollBarYMax);
2522625226
scrollBoxY = - (scrollBarY - constants.scrollBarMargin) /
2522725227
scrollBarYMax * scrollBoxYMax;
25228-
//scrollHandler(scrollBarY, scrollBoxY);
25228+
scrollHandler(scrollBarY, scrollBoxY);
2522925229
});
2523025230

2523125231
scrollBar.call(drag);
@@ -32823,7 +32823,7 @@ exports.svgAttrs = {
3282332823
var Plotly = require('./plotly');
3282432824

3282532825
// package version injected by `npm run preprocess`
32826-
exports.version = '1.33.1-ion42';
32826+
exports.version = '1.33.1-ion43';
3282732827

3282832828
// inject promise polyfill
3282932829
require('es6-promise').polyfill();

dist_ion/plotly-ion.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plotly.js",
3-
"version": "1.33.1-ion42",
3+
"version": "1.33.1-ion43",
44
"description": "The open source javascript graphing library that powers plotly",
55
"license": "MIT",
66
"main": "./lib/index.js",

src/assets/geo_assets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ var saneTopojson = require('sane-topojson');
1212

1313

1414
// package version injected by `npm run preprocess`
15-
exports.version = '1.33.1-ion42';exports.topojson = saneTopojson;
15+
exports.version = '1.33.1-ion43';exports.topojson = saneTopojson;

src/components/legend/draw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ module.exports = function draw(gd) {
312312
constants.scrollBarMargin + scrollBarYMax);
313313
scrollBoxY = - (scrollBarY - constants.scrollBarMargin) /
314314
scrollBarYMax * scrollBoxYMax;
315-
//scrollHandler(scrollBarY, scrollBoxY);
315+
scrollHandler(scrollBarY, scrollBoxY);
316316
});
317317

318318
scrollBar.call(drag);

src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
var Plotly = require('./plotly');
1616

1717
// package version injected by `npm run preprocess`
18-
exports.version = '1.33.1-ion42';
18+
exports.version = '1.33.1-ion43';
1919

2020
// inject promise polyfill
2121
require('es6-promise').polyfill();

0 commit comments

Comments
 (0)