Created
November 4, 2014 14:06
-
-
Save DeskWOW/87edea72d5d5f831347b to your computer and use it in GitHub Desktop.
Editing rate_block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$(function() { | |
$(".rate_link").click(function() { | |
$("#rate_article").hide(); | |
$("#rate_article_container").html("Custom message"); | |
}); | |
}); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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