Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
szczyglis-dev committed Apr 30, 2022
1 parent 3c228e7 commit bd1128b
Showing 1 changed file with 2 additions and 20 deletions.
22 changes: 2 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**Javascript** | current release: **1.0.9** build 2022-04-30
**Javascript** | current release: **1.0.10** build 2022-04-30

# Map Markers & Geocode

Expand Down Expand Up @@ -134,15 +134,6 @@ $(document).ready(function () {
geocode({address: query});
}
});

// Run geocode search on click search button
$('body').on('click', 'button[id="search"]', function (e) {
e.preventDefault();
const query = $('input[name="search_query"]').val();
if (query != '') {
geocode({address: query});
}
});
});
```

Expand Down Expand Up @@ -251,21 +242,12 @@ $(document).ready(function () {
geocode(query);
}
});

// Run geocode search on click search button
$('body').on('click', 'button[id="search"]', function (e) {
e.preventDefault();
const query = $('input[name="search_query"]').val();
if (query != '') {
geocode(query);
}
});
});
```
___

# Changelog
**- 1.0.9** - Published first release. (2022-04-30)
**- 1.0.10** - Published first release. (2022-04-30)

# Credits

Expand Down

0 comments on commit bd1128b

Please sign in to comment.