We were only showing these actions to users with small screens and to mouse users on hover. Keyboard users or users with a touch screen of a medium or large size could never find out the actions were there.
16 lines
516 B
Plaintext
16 lines
516 B
Plaintext
<small><%= t("related_content.is_related") %></small>
|
|
|
|
<span class="relate-content-score">
|
|
<%= link_to t("related_content.score_positive"),
|
|
score_positive_related_content_path(related),
|
|
method: :put,
|
|
remote: true,
|
|
class: "score-positive" %>
|
|
|
|
<%= link_to t("related_content.score_negative"),
|
|
score_negative_related_content_path(related),
|
|
method: :put,
|
|
remote: true,
|
|
class: "score-negative" %>
|
|
</span>
|