Strict mode is supported by 98% of the browsers, including Internet Explorer 10, and it helps developers avoid common JavaScript pitfalls.
14 lines
391 B
CoffeeScript
14 lines
391 B
CoffeeScript
"use strict"
|
|
|
|
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"
|