(v, existingRanges)
| 47 | } |
| 48 | |
| 49 | function overlappingExisting(v, existingRanges) { |
| 50 | for(var i = 0; i < existingRanges.length; i++) { |
| 51 | if(v >= existingRanges[i][0] && v <= existingRanges[i][1]) return true; |
| 52 | } |
| 53 | return false; |
| 54 | } |
| 55 | |
| 56 | function barHorizontalSetup(selection) { |
| 57 | selection |
no outgoing calls
no test coverage detected
searching dependent graphs…