about summary refs log tree commit diff stats
path: root/app/assets/javascripts/pokeviewer/pokemon.js.coffee
blob: 28a1ec1e18a3cf91c015d8ea7423222c23984e2f (plain) (blame)
1
2
3
4
5
6
7
$ ->
  $(".pkv-has-hover").mouseover ->
    $(this).children(".pkv-hover").show()
  $(".pkv-has-hover").mouseout ->
    $(this).children(".pkv-hover").hide()
  $(".pkv-has-hover").mousemove (event) ->
    $(this).children(".pkv-hover").offset({left: event.pageX + 16, top: event.pageY - 16})