Files
nairobi/app/assets/javascripts/votes.js.coffee
Javi Martín b27855c1cf Use double quotes in CoffeeScript files
As we do in the rest of the application.

Note we cannot add a rule enforcing double quotes because CoffeeScript
Lint does not have such rule.
2019-03-06 11:41:21 +01:00

19 lines
527 B
CoffeeScript

App.Votes =
hoverize: (votes) ->
$(document).on {
"mouseenter focus": ->
$("div.participation-not-allowed", this).show()
$("div.participation-allowed", this).hide()
mouseleave: ->
$("div.participation-not-allowed", this).hide()
$("div.participation-allowed", this).show()
}, votes
initialize: ->
App.Votes.hoverize "div.votes"
App.Votes.hoverize "div.supports"
App.Votes.hoverize "div.debate-questions"
App.Votes.hoverize "div.comment-footer"
false