Skip to content

Commit 0f8d770

Browse files
committed
Build latest.
1 parent 153163a commit 0f8d770

File tree

5 files changed

+7
-17
lines changed

5 files changed

+7
-17
lines changed

build/nv.d3.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* nvd3 version 1.8.4-dev (https://github.com/novus/nvd3) 2016-10-02 */
1+
/* nvd3 version 1.8.4-dev (https://github.com/novus/nvd3) 2016-12-01 */
22
.nvd3 .nv-axis {
33
pointer-events:none;
44
opacity: 1;

build/nv.d3.js

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* nvd3 version 1.8.4-dev (https://github.com/novus/nvd3) 2016-10-02 */
1+
/* nvd3 version 1.8.4-dev (https://github.com/novus/nvd3) 2016-12-01 */
22
(function(){
33

44
// set up main nv object
@@ -4745,11 +4745,7 @@ nv.models.focus = function(content) {
47454745

47464746
brush.on('brushend', function () {
47474747
if (!syncBrushing) {
4748-
var extent = brush.empty() ? x.domain() : brush.extent();
4749-
if (Math.abs(extent[0] - extent[1]) <= 1) {
4750-
return;
4751-
}
4752-
dispatch.onBrush(extent);
4748+
dispatch.onBrush(brush.empty() ? x.domain() : brush.extent());
47534749
}
47544750
});
47554751

@@ -4854,12 +4850,6 @@ nv.models.focus = function(content) {
48544850
function onBrush(shouldDispatch) {
48554851
brushExtent = brush.empty() ? null : brush.extent();
48564852
var extent = brush.empty() ? x.domain() : brush.extent();
4857-
4858-
//The brush extent cannot be less than one. If it is, don't update the line chart.
4859-
if (Math.abs(extent[0] - extent[1]) <= 1) {
4860-
return;
4861-
}
4862-
48634853
dispatch.brush({extent: extent, brush: brush});
48644854
updateBrushBG();
48654855
if (shouldDispatch) {

build/nv.d3.js.map

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

build/nv.d3.min.js

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

build/nv.d3.min.js.map

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

0 commit comments

Comments
 (0)