mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-20 15:34:49 +02:00
Merge branch 'master' of github.com:systemed/iD into create-multipolygon
This commit is contained in:
+6
-7
@@ -3,17 +3,17 @@
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>Mocha Tests</title>
|
||||
<link rel="stylesheet" href="lib/mocha.css">
|
||||
<link rel="stylesheet" href="../node_modules/mocha/mocha.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="mocha"></div>
|
||||
|
||||
<script src="lib/mocha.js"></script>
|
||||
<script src="lib/chai.js"></script>
|
||||
<script src="lib/sinon.js"></script>
|
||||
<script src="lib/sinon-chai.js"></script>
|
||||
<script src="../node_modules/mocha/mocha.js"></script>
|
||||
<script src="../node_modules/chai/chai.js"></script>
|
||||
<script src="../node_modules/sinon/pkg/sinon.js"></script>
|
||||
<script src="../node_modules/sinon-chai/lib/sinon-chai.js"></script>
|
||||
<script src="../node_modules/happen/src/happen.js"></script>
|
||||
<script src="lib/bind-shim.js"></script>
|
||||
<script src="lib/happen.js"></script>
|
||||
|
||||
<!-- include source files here... -->
|
||||
<script src='../js/lib/lodash.js'></script>
|
||||
@@ -233,7 +233,6 @@
|
||||
|
||||
<script src="spec/connection.js"></script>
|
||||
<script src="spec/geo.js"></script>
|
||||
<script src="spec/oauth.js"></script>
|
||||
<script src="spec/taginfo.js"></script>
|
||||
<script src="spec/util.js"></script>
|
||||
<script src="spec/translation.js"></script>
|
||||
|
||||
@@ -3,17 +3,17 @@
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>Mocha Tests</title>
|
||||
<link rel="stylesheet" href="lib/mocha.css">
|
||||
<link rel="stylesheet" href="../node_modules/mocha/mocha.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="mocha"></div>
|
||||
|
||||
<script src="lib/mocha.js"></script>
|
||||
<script src="lib/chai.js"></script>
|
||||
<script src="lib/sinon.js"></script>
|
||||
<script src="lib/sinon-chai.js"></script>
|
||||
<script src="../node_modules/mocha/mocha.js"></script>
|
||||
<script src="../node_modules/chai/chai.js"></script>
|
||||
<script src="../node_modules/sinon/pkg/sinon.js"></script>
|
||||
<script src="../node_modules/sinon-chai/lib/sinon-chai.js"></script>
|
||||
<script src="../node_modules/happen/src/happen.js"></script>
|
||||
<script src="lib/bind-shim.js"></script>
|
||||
<script src="lib/happen.js"></script>
|
||||
|
||||
<!-- include source files here... -->
|
||||
<script src='../iD.min.js'></script>
|
||||
|
||||
-3767
File diff suppressed because it is too large
Load Diff
@@ -1,123 +0,0 @@
|
||||
!(function(context, $) {
|
||||
var h = {};
|
||||
|
||||
// Make inheritance bearable: clone one level of properties
|
||||
function extend(child, parent) {
|
||||
for (var property in parent) {
|
||||
if (typeof child[property] == 'undefined') {
|
||||
child[property] = parent[property];
|
||||
}
|
||||
}
|
||||
return child;
|
||||
}
|
||||
|
||||
h.once = function(x, o) {
|
||||
var evt;
|
||||
|
||||
if (o.type.slice(0, 3) === 'key') {
|
||||
if (typeof Event === 'function') {
|
||||
evt = new Event(o.type);
|
||||
evt.keyCode = o.keyCode || 0;
|
||||
evt.charCode = o.charCode || 0;
|
||||
evt.shiftKey = o.shiftKey || false;
|
||||
evt.metaKey = o.metaKey || false;
|
||||
evt.ctrlKey = o.ctrlKey || false;
|
||||
evt.altKey = o.altKey || false;
|
||||
} else {
|
||||
evt = document.createEvent('KeyboardEvent');
|
||||
// https://developer.mozilla.org/en/DOM/event.initKeyEvent
|
||||
// https://developer.mozilla.org/en/DOM/KeyboardEvent
|
||||
evt[(evt.initKeyEvent) ? 'initKeyEvent'
|
||||
: 'initKeyboardEvent'](
|
||||
o.type, // in DOMString typeArg,
|
||||
true, // in boolean canBubbleArg,
|
||||
true, // in boolean cancelableArg,
|
||||
null, // in nsIDOMAbstractView viewArg, Specifies UIEvent.view. This value may be null.
|
||||
o.ctrlKey || false, // in boolean ctrlKeyArg,
|
||||
o.altKey || false, // in boolean altKeyArg,
|
||||
o.shiftKey || false, // in boolean shiftKeyArg,
|
||||
o.metaKey || false, // in boolean metaKeyArg,
|
||||
o.keyCode || 0, // in unsigned long keyCodeArg,
|
||||
o.charCode || 0 // in unsigned long charCodeArg);
|
||||
);
|
||||
|
||||
// Workaround for https://bugs.webkit.org/show_bug.cgi?id=16735
|
||||
if (evt.ctrlKey != (o.ctrlKey || 0) ||
|
||||
evt.altKey != (o.altKey || 0) ||
|
||||
evt.shiftKey != (o.shiftKey || 0) ||
|
||||
evt.metaKey != (o.metaKey || 0) ||
|
||||
evt.keyCode != (o.keyCode || 0) ||
|
||||
evt.charCode != (o.charCode || 0)) {
|
||||
evt = document.createEvent('Event');
|
||||
evt.initEvent(o.type, true, true);
|
||||
evt.ctrlKey = o.ctrlKey || false;
|
||||
evt.altKey = o.altKey || false;
|
||||
evt.shiftKey = o.shiftKey || false;
|
||||
evt.metaKey = o.metaKey || false;
|
||||
evt.keyCode = o.keyCode || 0;
|
||||
evt.charCode = o.charCode || 0;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
evt = document.createEvent('MouseEvents');
|
||||
// https://developer.mozilla.org/en/DOM/event.initMouseEvent
|
||||
evt.initMouseEvent(o.type,
|
||||
true, // canBubble
|
||||
true, // cancelable
|
||||
window, // 'AbstractView'
|
||||
o.clicks || 0, // click count
|
||||
o.screenX || 0, // screenX
|
||||
o.screenY || 0, // screenY
|
||||
o.clientX || 0, // clientX
|
||||
o.clientY || 0, // clientY
|
||||
o.ctrlKey || 0, // ctrl
|
||||
o.altKey || false, // alt
|
||||
o.shiftKey || false, // shift
|
||||
o.metaKey || false, // meta
|
||||
o.button || false, // mouse button
|
||||
null // relatedTarget
|
||||
);
|
||||
}
|
||||
|
||||
x.dispatchEvent(evt);
|
||||
};
|
||||
|
||||
var shortcuts = ['click', 'mousedown', 'mouseup', 'mousemove',
|
||||
'mouseover', 'mouseout', 'keydown', 'keyup', 'keypress'],
|
||||
s, i = 0;
|
||||
|
||||
while (s = shortcuts[i++]) {
|
||||
h[s] = (function(s) {
|
||||
return function(x, o) {
|
||||
h.once(x, extend(o || {}, { type: s }));
|
||||
};
|
||||
})(s);
|
||||
}
|
||||
|
||||
h.dblclick = function(x, o) {
|
||||
h.once(x, extend(o || {}, {
|
||||
type: 'dblclick',
|
||||
clicks: 2
|
||||
}));
|
||||
};
|
||||
|
||||
this.happen = h;
|
||||
|
||||
// Export for nodejs
|
||||
if (typeof module !== 'undefined') {
|
||||
module.exports = this.happen;
|
||||
}
|
||||
|
||||
// Provide jQuery plugin
|
||||
if ($ && $.fn) {
|
||||
$.fn.happen = function(o) {
|
||||
if (typeof o === 'string') {
|
||||
o = { type: o };
|
||||
}
|
||||
for (var i = 0; i < this.length; i++) {
|
||||
happen.once(this[i], o);
|
||||
}
|
||||
return this;
|
||||
};
|
||||
}
|
||||
})(this, (typeof jQuery !== 'undefined') ? jQuery : null);
|
||||
@@ -1,227 +0,0 @@
|
||||
@charset "UTF-8";
|
||||
body {
|
||||
font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
padding: 60px 50px;
|
||||
}
|
||||
|
||||
#mocha ul, #mocha li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#mocha ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
#mocha h1, #mocha h2 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#mocha h1 {
|
||||
margin-top: 15px;
|
||||
font-size: 1em;
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
#mocha h1 a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
#mocha h1 a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#mocha .suite .suite h1 {
|
||||
margin-top: 0;
|
||||
font-size: .8em;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mocha h2 {
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#mocha .suite {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
#mocha .test {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
#mocha .test.pending:hover h2::after {
|
||||
content: '(pending)';
|
||||
font-family: arial;
|
||||
}
|
||||
|
||||
#mocha .test.pass.medium .duration {
|
||||
background: #C09853;
|
||||
}
|
||||
|
||||
#mocha .test.pass.slow .duration {
|
||||
background: #B94A48;
|
||||
}
|
||||
|
||||
#mocha .test.pass::before {
|
||||
content: '✓';
|
||||
font-size: 12px;
|
||||
display: block;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
color: #00d6b2;
|
||||
}
|
||||
|
||||
#mocha .test.pass .duration {
|
||||
font-size: 9px;
|
||||
margin-left: 5px;
|
||||
padding: 2px 5px;
|
||||
color: white;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
-ms-border-radius: 5px;
|
||||
-o-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#mocha .test.pass.fast .duration {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mocha .test.pending {
|
||||
color: #0b97c4;
|
||||
}
|
||||
|
||||
#mocha .test.pending::before {
|
||||
content: '◦';
|
||||
color: #0b97c4;
|
||||
}
|
||||
|
||||
#mocha .test.fail {
|
||||
color: #c00;
|
||||
}
|
||||
|
||||
#mocha .test.fail pre {
|
||||
color: black;
|
||||
}
|
||||
|
||||
#mocha .test.fail::before {
|
||||
content: '✖';
|
||||
font-size: 12px;
|
||||
display: block;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
color: #c00;
|
||||
}
|
||||
|
||||
#mocha .test pre.error {
|
||||
color: #c00;
|
||||
max-height: 300px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#mocha .test pre {
|
||||
display: inline-block;
|
||||
font: 12px/1.5 monaco, monospace;
|
||||
margin: 5px;
|
||||
padding: 15px;
|
||||
border: 1px solid #eee;
|
||||
border-bottom-color: #ddd;
|
||||
-webkit-border-radius: 3px;
|
||||
-webkit-box-shadow: 0 1px 3px #eee;
|
||||
-moz-border-radius: 3px;
|
||||
-moz-box-shadow: 0 1px 3px #eee;
|
||||
}
|
||||
|
||||
#mocha .test h2 {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#mocha .test a.replay {
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
right: -20px;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
display: block;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
line-height: 15px;
|
||||
text-align: center;
|
||||
background: #eee;
|
||||
font-size: 15px;
|
||||
-moz-border-radius: 15px;
|
||||
border-radius: 15px;
|
||||
-webkit-transition: opacity 200ms;
|
||||
-moz-transition: opacity 200ms;
|
||||
transition: opacity 200ms;
|
||||
opacity: 0.2;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
#mocha .test:hover a.replay {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#mocha-report.pass .test.fail {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mocha-report.fail .test.pass {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mocha-error {
|
||||
color: #c00;
|
||||
font-size: 1.5 em;
|
||||
font-weight: 100;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
#mocha-stats {
|
||||
position: fixed;
|
||||
top: 15px;
|
||||
right: 10px;
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
#mocha-stats .progress {
|
||||
float: right;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
#mocha-stats em {
|
||||
color: black;
|
||||
}
|
||||
|
||||
#mocha-stats a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
#mocha-stats a:hover {
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
#mocha-stats li {
|
||||
display: inline-block;
|
||||
margin: 0 5px;
|
||||
list-style: none;
|
||||
padding-top: 11px;
|
||||
}
|
||||
|
||||
code .comment { color: #ddd }
|
||||
code .init { color: #2F6FAD }
|
||||
code .string { color: #5890AD }
|
||||
code .keyword { color: #8A6343 }
|
||||
code .number { color: #2F6FAD }
|
||||
-5299
File diff suppressed because it is too large
Load Diff
@@ -1,106 +0,0 @@
|
||||
(function (sinonChai) {
|
||||
"use strict";
|
||||
|
||||
// Module systems magic dance.
|
||||
|
||||
if (typeof require === "function" && typeof exports === "object" && typeof module === "object") {
|
||||
// NodeJS
|
||||
module.exports = sinonChai;
|
||||
} else if (typeof define === "function" && define.amd) {
|
||||
// AMD
|
||||
define(function () {
|
||||
return sinonChai;
|
||||
});
|
||||
} else {
|
||||
// Other environment (usually <script> tag): plug in to global chai instance directly.
|
||||
chai.use(sinonChai);
|
||||
}
|
||||
}(function sinonChai(chai, utils) {
|
||||
"use strict";
|
||||
|
||||
var slice = Array.prototype.slice;
|
||||
|
||||
function isSpy(putativeSpy) {
|
||||
return typeof putativeSpy === "function" &&
|
||||
typeof putativeSpy.getCall === "function" &&
|
||||
typeof putativeSpy.calledWithExactly === "function";
|
||||
}
|
||||
|
||||
function isCall(putativeCall) {
|
||||
return putativeCall && isSpy(putativeCall.proxy);
|
||||
}
|
||||
|
||||
function assertCanWorkWith(assertion) {
|
||||
if (!isSpy(assertion._obj) && !isCall(assertion._obj)) {
|
||||
throw new TypeError(utils.inspect(assertion._obj) + " is not a spy or a call to a spy!");
|
||||
}
|
||||
}
|
||||
|
||||
function getMessages(spy, action, nonNegatedSuffix, always, args) {
|
||||
var verbPhrase = always ? "always have " : "have ";
|
||||
nonNegatedSuffix = nonNegatedSuffix || "";
|
||||
spy = spy.proxy || spy;
|
||||
|
||||
function printfArray(array) {
|
||||
return spy.printf.apply(spy, array);
|
||||
}
|
||||
|
||||
return {
|
||||
affirmative: printfArray(["expected %n to " + verbPhrase + action + nonNegatedSuffix].concat(args)),
|
||||
negative: printfArray(["expected %n to not " + verbPhrase + action].concat(args))
|
||||
};
|
||||
}
|
||||
|
||||
function sinonProperty(name, action, nonNegatedSuffix) {
|
||||
utils.addProperty(chai.Assertion.prototype, name, function () {
|
||||
assertCanWorkWith(this);
|
||||
|
||||
var messages = getMessages(this._obj, action, nonNegatedSuffix, false);
|
||||
this.assert(this._obj[name], messages.affirmative, messages.negative);
|
||||
});
|
||||
}
|
||||
|
||||
function createSinonMethodHandler(sinonName, action, nonNegatedSuffix) {
|
||||
return function () {
|
||||
assertCanWorkWith(this);
|
||||
|
||||
var alwaysSinonMethod = "always" + sinonName[0].toUpperCase() + sinonName.substring(1);
|
||||
var shouldBeAlways = utils.flag(this, "always") && typeof this._obj[alwaysSinonMethod] === "function";
|
||||
var sinonMethod = shouldBeAlways ? alwaysSinonMethod : sinonName;
|
||||
|
||||
var messages = getMessages(this._obj, action, nonNegatedSuffix, shouldBeAlways, slice.call(arguments));
|
||||
this.assert(this._obj[sinonMethod].apply(this._obj, arguments), messages.affirmative, messages.negative);
|
||||
};
|
||||
}
|
||||
|
||||
function sinonMethodAsProperty(name, action, nonNegatedSuffix) {
|
||||
var handler = createSinonMethodHandler(name, action, nonNegatedSuffix);
|
||||
utils.addProperty(chai.Assertion.prototype, name, handler);
|
||||
}
|
||||
|
||||
function exceptionalSinonMethod(chaiName, sinonName, action, nonNegatedSuffix) {
|
||||
var handler = createSinonMethodHandler(sinonName, action, nonNegatedSuffix);
|
||||
utils.addMethod(chai.Assertion.prototype, chaiName, handler);
|
||||
}
|
||||
|
||||
function sinonMethod(name, action, nonNegatedSuffix) {
|
||||
exceptionalSinonMethod(name, name, action, nonNegatedSuffix);
|
||||
}
|
||||
|
||||
utils.addProperty(chai.Assertion.prototype, "always", function () {
|
||||
utils.flag(this, "always", true);
|
||||
});
|
||||
|
||||
sinonProperty("called", "been called", " at least once, but it was never called");
|
||||
sinonProperty("calledOnce", "been called exactly once", ", but it was called %c%C");
|
||||
sinonProperty("calledTwice", "been called exactly twice", ", but it was called %c%C");
|
||||
sinonProperty("calledThrice", "been called exactly thrice", ", but it was called %c%C");
|
||||
sinonMethodAsProperty("calledWithNew", "been called with new");
|
||||
sinonMethod("calledBefore", "been called before %1");
|
||||
sinonMethod("calledAfter", "been called after %1");
|
||||
sinonMethod("calledOn", "been called with %1 as this", ", but it was called with %t instead");
|
||||
sinonMethod("calledWith", "been called with arguments %*", "%C");
|
||||
sinonMethod("calledWithExactly", "been called with exact arguments %*", "%C");
|
||||
sinonMethod("returned", "returned %1");
|
||||
exceptionalSinonMethod("thrown", "threw", "thrown %1");
|
||||
}));
|
||||
-4153
File diff suppressed because it is too large
Load Diff
@@ -1,15 +1,17 @@
|
||||
describe("iD.actions.Move", function() {
|
||||
var projection = d3.geo.mercator().scale(250 / Math.PI);
|
||||
|
||||
describe("#disabled", function() {
|
||||
it("returns falsy by default", function() {
|
||||
var node = iD.Node({loc: [0, 0]}),
|
||||
action = iD.actions.Move([node.id], [0, 0], d3.geo.mercator()),
|
||||
action = iD.actions.Move([node.id], [0, 0], projection),
|
||||
graph = iD.Graph([node]);
|
||||
expect(action.disabled(graph)).not.to.be.ok;
|
||||
});
|
||||
|
||||
it("returns 'incomplete_relation' for an incomplete relation", function() {
|
||||
var relation = iD.Relation({members: [{id: 1}]}),
|
||||
action = iD.actions.Move([relation.id], [0, 0], d3.geo.mercator()),
|
||||
action = iD.actions.Move([relation.id], [0, 0], projection),
|
||||
graph = iD.Graph([relation]);
|
||||
expect(action.disabled(graph)).to.equal('incomplete_relation');
|
||||
});
|
||||
@@ -17,7 +19,7 @@ describe("iD.actions.Move", function() {
|
||||
it("returns falsy for a complete relation", function() {
|
||||
var node = iD.Node({loc: [0, 0]}),
|
||||
relation = iD.Relation({members: [{id: node.id}]}),
|
||||
action = iD.actions.Move([relation.id], [0, 0], d3.geo.mercator()),
|
||||
action = iD.actions.Move([relation.id], [0, 0], projection),
|
||||
graph = iD.Graph([node, relation]);
|
||||
expect(action.disabled(graph)).not.to.be.ok;
|
||||
});
|
||||
@@ -28,7 +30,6 @@ describe("iD.actions.Move", function() {
|
||||
node2 = iD.Node({loc: [5, 10]}),
|
||||
way = iD.Way({nodes: [node1.id, node2.id]}),
|
||||
delta = [2, 3],
|
||||
projection = d3.geo.mercator(),
|
||||
graph = iD.actions.Move([way.id], delta, projection)(iD.Graph([node1, node2, way])),
|
||||
loc1 = graph.entity(node1.id).loc,
|
||||
loc2 = graph.entity(node2.id).loc;
|
||||
@@ -42,7 +43,6 @@ describe("iD.actions.Move", function() {
|
||||
var node = iD.Node({loc: [0, 0]}),
|
||||
way = iD.Way({nodes: [node.id, node.id]}),
|
||||
delta = [2, 3],
|
||||
projection = d3.geo.mercator(),
|
||||
graph = iD.actions.Move([way.id], delta, projection)(iD.Graph([node, way])),
|
||||
loc = graph.entity(node.id).loc;
|
||||
expect(loc[0]).to.be.closeTo( 1.440, 0.001);
|
||||
@@ -54,7 +54,6 @@ describe("iD.actions.Move", function() {
|
||||
way1 = iD.Way({nodes: [node.id]}),
|
||||
way2 = iD.Way({nodes: [node.id]}),
|
||||
delta = [2, 3],
|
||||
projection = d3.geo.mercator(),
|
||||
graph = iD.actions.Move([way1.id, way2.id], delta, projection)(iD.Graph([node, way1, way2])),
|
||||
loc = graph.entity(node.id).loc;
|
||||
expect(loc[0]).to.be.closeTo( 1.440, 0.001);
|
||||
@@ -66,7 +65,6 @@ describe("iD.actions.Move", function() {
|
||||
way = iD.Way({nodes: [node.id]}),
|
||||
relation = iD.Relation({members: [{id: way.id}]}),
|
||||
delta = [2, 3],
|
||||
projection = d3.geo.mercator(),
|
||||
graph = iD.actions.Move([relation.id], delta, projection)(iD.Graph([node, way, relation])),
|
||||
loc = graph.entity(node.id).loc;
|
||||
expect(loc[0]).to.be.closeTo( 1.440, 0.001);
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
describe("iD.svg.LineString", function () {
|
||||
var projection = d3.geo.mercator();
|
||||
var projection = d3.geo.mercator().scale(250 / Math.PI);
|
||||
|
||||
it("returns an SVG path description for the entity's nodes", function () {
|
||||
var a = iD.Node({loc: [0, 0]}),
|
||||
|
||||
Reference in New Issue
Block a user