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