Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.0 #210

Merged
merged 45 commits into from
Aug 23, 2020
Merged

2.0 #210

Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
8fc76d7
Fix #209.
mbostock Mar 18, 2019
20029cb
Fix #197 iterable selections.
mbostock Mar 18, 2019
60be25f
Use self-iteration instead of each.
mbostock Mar 18, 2019
54f6e6b
Fix #208 - strict merge.
mbostock Mar 18, 2019
263a801
Fix #204 - accept iterable in selection.data.
mbostock Mar 18, 2019
2824b06
Related d3/d3#3265.
mbostock Jul 29, 2019
f3f0e66
Remove d3.event.
mbostock Jul 29, 2019
13dbec6
Remove sourceEvent.
mbostock Jul 29, 2019
bcbf78e
Default to event.currentTarget.
mbostock Jul 29, 2019
bfee680
Rename to “target”.
mbostock Jul 29, 2019
e2b8efe
Don’t default options to false.
mbostock Jul 29, 2019
de28a3e
Rename clientPoint to pointer.
mbostock Jul 29, 2019
e9765ea
Update dependencies.
mbostock Jul 30, 2019
7cb8ad4
2.0.0-rc.1
mbostock Jul 30, 2019
4b1ba83
Explicit files.
mbostock Jul 30, 2019
772adb3
Fix d3.pointer when the target is a window.
mbostock Jul 30, 2019
65c9592
Update README.
mbostock Jul 30, 2019
9bce1bd
Handle missing targets.
mbostock Jul 30, 2019
fe2ed50
Update README.
mbostock Jul 30, 2019
f13c41a
Don’t copy arrays.
mbostock Jul 30, 2019
6666180
Standardize array conversion.
mbostock Jul 30, 2019
1ce33b5
Adopt a Map.
mbostock Nov 16, 2019
8cde069
Correctly iterate over a string.
mbostock Nov 16, 2019
4782e69
Don’t allow data to be null.
mbostock Nov 16, 2019
630e51c
Test for selection.data(null).
mbostock Nov 16, 2019
7398837
2.0.0-rc.2
mbostock Nov 17, 2019
7031dc3
Merge branch 'master' into two
mbostock Nov 17, 2019
9f3c5e8
*selection*.selection() returns itself
Fil Jun 29, 2020
e30ceae
*selection*.selection() returns itself
Fil Jul 23, 2020
5220ca0
v2.0.0-rc.3
Fil Jul 23, 2020
afef83a
link syntax
Fil Jul 24, 2020
eea6d35
Add d3.pointers.
mbostock Aug 3, 2020
14ebfe7
use sourceEvent.currentTarget
Fil Aug 3, 2020
10e738a
Update src/pointer.js
Fil Aug 3, 2020
bbc520a
Update src/pointers.js
Fil Aug 3, 2020
d03744a
document pointer, pointers
Fil Aug 4, 2020
1104d26
array
Fil Aug 4, 2020
ca02fa5
use sourceEvent.currentTarget
Fil Aug 4, 2020
f0c3a69
Add d3.pointers
Fil Aug 4, 2020
f254f64
pointer tests
Fil Aug 5, 2020
29c55b7
v2.0.0-rc.4
Fil Aug 5, 2020
248aeba
a few tests for d3.pointer d3.pointers
Fil Aug 5, 2020
04e9e75
Add selection.selectChild[ren].
mbostock Apr 25, 2020
ab4a51d
2.0.0-rc.5
mbostock Aug 12, 2020
9053829
Merge branch 'master' into two
Fil Aug 23, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/pointers.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ export default function(events, node) {
if (node === undefined) node = events.currentTarget;
events = events.touches || [events];
}
console.warn({events, node})
Fil marked this conversation as resolved.
Show resolved Hide resolved
return Array.from(events, event => pointer(event, node));
}