mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-23 03:26:07 +10:00
17 lines
461 B
CoffeeScript
17 lines
461 B
CoffeeScript
$(document).ready ->
|
|
$(window).load (e) ->
|
|
e.preventDefault()
|
|
unless location.hash is ""
|
|
$("html, body").animate
|
|
scrollTop: $(".navbar").offset().top - $(".navbar").height()
|
|
, 200
|
|
|
|
$("a").click (event) ->
|
|
link = event.target
|
|
isAnchor = link instanceof HTMLAnchorElement
|
|
|
|
if (location.hash != "" || isAnchor)
|
|
$("html,body").animate
|
|
scrollTop: $(this).offset().top - $(".navbar").height() - 3
|
|
, 200
|