Skip to content

Instantly share code, notes, and snippets.

@DeskWOW
Created November 4, 2014 14:06
Show Gist options
  • Save DeskWOW/87edea72d5d5f831347b to your computer and use it in GitHub Desktop.
Save DeskWOW/87edea72d5d5f831347b to your computer and use it in GitHub Desktop.
Editing rate_block
<script>
$(function() {
$(".rate_link").click(function() {
$("#rate_article").hide();
$("#rate_article_container").html("Custom message");
});
});
</script>
{% capture snippet_yes_helpful %}Yes{% endcapture %}
{% capture snippet_no_helpful %}No{% endcapture %}
{{ rate_block | replace: 'I found this article helpful', snippet_yes_helpful | replace: 'I did not find this article helpful',snippet_no_helpful }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment