Skip to content

Commit

Permalink
fix(forum): ab test forum rating (#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentporte authored Jun 18, 2024
1 parent c5699d4 commit f0e9c2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lacommunaute/templates/forum/forum_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,14 +198,14 @@ <h1>{{ forum.name }}</h1>
{
name: 'rating_area_2', // you can also use '13' (ID of the variation) to hide the name
activate: function(event) {
$("#rating_area2").removeClass("d-none")
$("#rating_area1").addClass("d-none")
$("#rating-area2").removeClass("d-none")
$("#rating-area1").addClass("d-none")
}
}, {
name: 'rating_area_3', // you can also use '14' (ID of the variation) to hide the name
activate: function(event) {
$("#rating_area3").removeClass("d-none")
$("#rating_area1").addClass("d-none")
$("#rating-area3").removeClass("d-none")
$("#rating-area1").addClass("d-none")
}
}
],
Expand Down

0 comments on commit f0e9c2b

Please sign in to comment.