(callback)
| 425 | } |
| 426 | |
| 427 | function axisBrushMoved(callback) { |
| 428 | return function axisBrushMoved(dimension) { |
| 429 | var brush = dimension.brush; |
| 430 | var extent = getBrushExtent(brush); |
| 431 | var newExtent = extent.slice(); |
| 432 | brush.filter.set(newExtent); |
| 433 | callback(); |
| 434 | }; |
| 435 | } |
| 436 | |
| 437 | function dedupeRealRanges(intervals) { |
| 438 | // Fuses elements of intervals if they overlap, yielding discontiguous intervals, results.length <= intervals.length |
no test coverage detected
searching dependent graphs…