mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 09:42:56 +00:00
9 lines
149 B
JavaScript
9 lines
149 B
JavaScript
iD.Relation = iD.Entity.extend({
|
|
type: "relation",
|
|
members: [],
|
|
|
|
extent: function() {
|
|
return [[NaN, NaN], [NaN, NaN]];
|
|
}
|
|
});
|