Fix typos in some js code and ignore some typos

This commit is contained in:
alexX512 2022-06-14 07:51:46 +00:00
parent 2be72560f4
commit 77def20394
3 changed files with 8 additions and 2 deletions

View File

@ -11,3 +11,9 @@ offsett
numer numer
ue ue
alse alse
nodel
curveLinear
ot
te
fo
ba

View File

@ -307,7 +307,7 @@
x = d3.scaleLinear() x = d3.scaleLinear()
.domain([timeDomainStart, timeDomainEnd]) .domain([timeDomainStart, timeDomainEnd])
.range([0, width]) .range([0, width])
//.clamp(true); // dosn't work with zoom/pan //.clamp(true); // doesn't work with zoom/pan
xZoomed = x; xZoomed = x;
y = d3.scaleBand() y = d3.scaleBand()
.domain([...data.bands]) .domain([...data.bands])

View File

@ -26,7 +26,7 @@
root.d3.tip = factory(d3, d3) root.d3.tip = factory(d3, d3)
} }
}(this, function(d3Collection, d3Selection) { }(this, function(d3Collection, d3Selection) {
// Public - contructs a new tooltip // Public - constructs a new tooltip
// //
// Returns a tip // Returns a tip
return function() { return function() {