Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
timkeane committed Jun 12, 2019
1 parent e6ba22d commit ed9b9a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/show/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ <h1>
function zoom() {
var v = map.getView();
v.animate({zoom: v.getZoom() + 1, duration: 2000});
if (v.getZoom() > 15) map.off('postrender', zoom);
if (v.getZoom() > 15) map.un('postrender', zoom);
}

$('.fld-srch-container input').keyup(function() {
Expand Down

0 comments on commit ed9b9a1

Please sign in to comment.