Skip to content

Commit

Permalink
Check in build
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrasd committed Aug 21, 2024
1 parent 55ca3e4 commit 6e10329
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions dist/iD.js
Original file line number Diff line number Diff line change
Expand Up @@ -20136,7 +20136,7 @@
// package.json
var package_default = {
name: "iD",
version: "2.30.0",
version: "2.30.1",
description: "A friendly editor for OpenStreetMap",
main: "dist/iD.min.js",
repository: "github:openstreetmap/iD",
Expand Down Expand Up @@ -74717,11 +74717,12 @@
context.zoomToNote = (noteId, zoomTo) => {
context.loadNote(noteId, (err, result) => {
if (err) return;
if (zoomTo === false) return;
const entity = result.data.find((e3) => e3.id === noteId);
if (entity) {
const note = services.osm.getNote(noteId);
context.map().centerZoom(note.loc, 15);
if (zoomTo !== false) {
context.map().centerZoom(note.loc, 15);
}
const noteLayer = context.layers().layer("notes");
noteLayer.enabled(true);
context.enter(modeSelectNote(context, noteId));
Expand Down
4 changes: 2 additions & 2 deletions dist/iD.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/iD.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/iD.min.js.map

Large diffs are not rendered by default.

0 comments on commit 6e10329

Please sign in to comment.