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.
13 lines
387 B
CoffeeScript
13 lines
387 B
CoffeeScript
App.AllowParticipation =
|
|
|
|
initialize: ->
|
|
$(document).on {
|
|
"mouseenter focus": ->
|
|
$(this).find(".js-participation-not-allowed").show()
|
|
$(this).find(".js-participation-allowed").hide()
|
|
mouseleave: ->
|
|
$(this).find(".js-participation-not-allowed").hide()
|
|
$(this).find(".js-participation-allowed").show()
|
|
}, ".js-participation"
|
|
false
|