Skip to content

Commit

Permalink
maps: change rating icons to thumbs in map
Browse files Browse the repository at this point in the history
  • Loading branch information
vellip committed Dec 17, 2024
1 parent 4176422 commit cd6f0d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adhocracy4/maps/static/a4maps/a4maps_display_points.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ function init () {

function getRatings (feature) {
return '<span class="map-popup-upvotes">' +
feature.properties.positive_rating_count + ' <i class="fa fa-chevron-up" aria-hidden="true"></i>' +
feature.properties.positive_rating_count + ' <i class="fa fa-thumbs-up" aria-hidden="true"></i>' +
'</span>' +
'<span class="map-popup-downvotes">' +
feature.properties.negative_rating_count + ' <i class="fa fa-chevron-down" aria-hidden="true"></i>' +
feature.properties.negative_rating_count + ' <i class="fa fa-thumbs-down" aria-hidden="true"></i>' +
'</span>'
}

Expand Down

0 comments on commit cd6f0d7

Please sign in to comment.