mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-05 10:51:35 +00:00
8 lines
120 B
JavaScript
8 lines
120 B
JavaScript
iD.Node = iD.Entity.extend({
|
|
type: "node",
|
|
|
|
extent: function() {
|
|
return [this.loc, this.loc];
|
|
}
|
|
});
|