Files
nairobi/app/assets/javascripts/fixed_bar.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

14 lines
413 B
CoffeeScript

App.FixedBar =
initialize: ->
$("[data-fixed-bar]").each ->
$this = $(this)
fixedBarTopPosition = $this.offset().top
$(window).on "scroll", ->
if $(window).scrollTop() > fixedBarTopPosition
$this.addClass("is-fixed")
$("#check-ballot").css({ "display": "inline-block" })
else
$this.removeClass("is-fixed")
$("#check-ballot").hide()