- 04 May, 2016 5 commits
-
-
Mike Bostock authored
-
Mike Bostock authored
-
Mike Bostock authored
-
-
Mike Bostock authored
-
- 25 Apr, 2016 3 commits
-
-
Mike Bostock authored
-
Mike Bostock authored
-
Mike Bostock authored
-
- 20 Apr, 2016 3 commits
-
-
Mike Bostock authored
chinese locale
-
Minwei Xu authored
-
Minwei Xu authored
-
- 31 Mar, 2016 1 commit
-
-
Lukas Appelhans authored
-
- 17 Feb, 2016 2 commits
-
-
Mike Bostock authored
Fix #2737. The previous fix for #2722 meant that createElement was used to create HTML elements in HTML documents, but it also meant it was used to create SVG elements in SVG documents, which failed: createElement only inherits the namespace in HTML documents, not in other document types. https://www.w3.org/TR/dom/#dom-document-createelement
-
Mike Bostock authored
-
- 13 Feb, 2016 2 commits
-
-
Mike Bostock authored
Component is not maintained anymore, per componentjs/component#639.
-
Mike Bostock authored
-
- 11 Feb, 2016 3 commits
-
-
Mike Bostock authored
-
Mike Bostock authored
-
-
- 01 Feb, 2016 1 commit
-
-
Mike Bostock authored
Fixes #2728.
-
- 27 Jan, 2016 1 commit
-
-
Mike Bostock authored
If the implicit namespace of the created element matches that of the document element, the document’s createElement should be used instead of createElementNS. This way, in documents for which createElement is case-insensitive—most notably HTML documents—selection.append is likewise case-insensitive.
-
- 20 Jan, 2016 1 commit
-
-
Mike Bostock authored
-
- 11 Jan, 2016 2 commits
-
-
Mike Bostock authored
Fix browserify key in package.json
-
Fernando Lores authored
-
- 05 Jan, 2016 1 commit
-
-
Stef Walter authored
Drag behavior is broken for <svg:use> elements on certain browsers. This includes d3.layout.force(...).drag() On browsers like Internet Explorer 11, the <svg:use> EventTarget is represented by a SVGElementInstance that looks like this: [object SVGElementInstance] { [functions]: , __proto__: { }, childNodes: { }, constructor: { }, correspondingElement: { }, correspondingUseElement: { }, firstChild: null, lastChild: null, nextSibling: null, parentNode: { }, previousSibling: { } } No other properties such as .style are present. We must use the correspondingElement property to access the actual SVG element instantiated by the <svg:use> in order to have a successful drag.
-
- 02 Jan, 2016 1 commit
-
-
Mike Bostock authored
-
- 17 Dec, 2015 1 commit
-
-
Mike Bostock authored
-
- 14 Dec, 2015 3 commits
-
-
Mike Bostock authored
-
-
Mike Bostock authored
-
- 11 Dec, 2015 1 commit
-
-
Sherry Zhou authored
- (x - x0) / k sometimes provides a value with trailing 0's due to division. This means groups that have an integer value appear to be a decimal number
-
- 29 Nov, 2015 1 commit
-
-
Mike Bostock authored
-
- 25 Nov, 2015 1 commit
-
-
Mike Bostock authored
Related #2654.
-
- 16 Nov, 2015 1 commit
-
-
Mike Bostock authored
-
- 13 Nov, 2015 1 commit
-
-
Mike Bostock authored
This fixes a priority inversion where a transition B that is scheduled on transition A’s start initializes its tweens before transition A has its first tick. By scheduling transition A’s first tick before dispatching A’s start event, it’s first tick is guaranteed to run before any new transition’s tweens are initialized. Related #1576 d3/d3-transition#16.
-
- 12 Nov, 2015 1 commit
-
-
Mike Bostock authored
-
- 11 Nov, 2015 1 commit
-
-
Mike Bostock authored
This reverts #312, since we later implemented a more robust check in #1005 using a zero-delay timeout to expire click suppression.
-
- 10 Nov, 2015 2 commits
-
-
Mike Bostock authored
-
Mike Bostock authored
Firefox doesn’t correctly hoist functions defined inside if blocks, so move the functions out of the if block.
-
- 09 Nov, 2015 1 commit
-
-
Mike Bostock authored
-