Skip to content

Commit

Permalink
#25 fixed click zone for pushpins
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremybenaim committed Apr 11, 2013
1 parent 8ebe716 commit 8ca29c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/javascripts/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ function renderPhoto(item) {

var pushpin = new Microsoft.Maps.Pushpin(
new Microsoft.Maps.Location(item.latitude, item.longitude), {
width: null,
height: null,
width: 75,
height: 75,
htmlContent: ("<div class='mapImage' data-id='" + item.id + "' id='" + item.id + "'></div>")
}
);
Expand Down
3 changes: 1 addition & 2 deletions public/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -704,8 +704,7 @@ input#searchToHeader:-ms-input-placeholder, input#searchFromHeader:-ms-input-pla
border-radius: 50%;
border: 1px solid #333 !important;
cursor: pointer;
margin-left: -50%;
margin-top: -50%;
margin: 0;
}


Expand Down

0 comments on commit 8ca29c3

Please sign in to comment.