mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 05:30:35 +02:00
Fix SVG parse errors in specs (fixes #2012)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
describe("iD.svg.Areas", function () {
|
||||
var surface,
|
||||
projection = d3.geo.projection(function(x) { return x; })
|
||||
projection = d3.geo.projection(function(x, y) { return [x, y]; })
|
||||
.clipExtent([[0, 0], [Infinity, Infinity]]),
|
||||
all = d3.functor(true),
|
||||
none = d3.functor(false);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
describe("iD.svg.Lines", function () {
|
||||
var surface,
|
||||
projection = d3.geo.projection(function(x) { return x; })
|
||||
projection = d3.geo.projection(function(x, y) { return [x, y]; })
|
||||
.clipExtent([[0, 0], [Infinity, Infinity]]),
|
||||
filter = d3.functor(true);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user