Skip to content
Snippets Groups Projects
Commit 285c62ae authored by Valery Sizov's avatar Valery Sizov Committed by Rubén Dávila
Browse files

fix

parent 7b331ee9
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -15,17 +15,16 @@
:coffeescript
post_emoji_url = "#{award_toggle_namespace_project_notes_path(@project.namespace, @project)}"
noteable_type = #{votable}
noteable_id = #{votable.id}
noteable_type = "#{votable.class}"
noteable_id = "#{votable.id}"
window.awards_handler = new AwardsHandler(post_emoji_url, noteable_type, noteable_id)
 
$ ->
$(".awards-menu li").click (e)->
emoji = $(this).data("emoji")
awards_handler.addAward(emoji)
$(".awards-menu li").click (e)->
emoji = $(this).data("emoji")
awards_handler.addAward(emoji)
 
$(".awards").on "click", ".award", (e)->
emoji = $(this).find(".icon").data("emoji")
awards_handler.addAward(emoji)
$(".awards").on "click", ".award", (e)->
emoji = $(this).find(".icon").data("emoji")
awards_handler.addAward(emoji)
 
$(".award").tooltip()
\ No newline at end of file
$(".award").tooltip()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment