Files
iD/modules
Bryan Housel ede561080d Add update method, remove getters..
This makes the osmNote work a bit more like other osm objects in iD.

- When working with the osm objects, we'll treat them as immutable.
  So all modifications will be through the update method:

  e.g. can do this in a repl, like chrome devtools console:
  >  n = iD.osmNote()
  osmNote { id: -1 }
  > n = n.update({ foo: 'bar' });
  osmNote { foo: "bar", id: -1, v: 1 }

- none of the other osm objects have getters, and in JavaScript all the
  properties are public anyway
2018-06-29 22:47:14 -04:00
..
2018-04-25 23:32:57 -04:00
2018-06-28 19:02:06 -04:00
2018-03-22 16:51:53 -04:00
2018-06-29 22:47:14 -04:00
2018-06-29 09:57:52 -07:00
2018-01-29 13:20:50 +01:00