about summary refs log tree commit diff stats
path: root/app/assets/javascripts/pokeviewer/pokemon.js.coffee
blob: e80ae77cf2d0b943b8a4ae0833f174f5a424ae40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
show_pokemon_tab = (tab) ->
  $(".pokemon-tab").hide()
  $(".ptabe-button").removeClass("active")
  $(".pokemon-" + tab).show()
  $(".ptabe-" + tab).addClass("active")

$ ->
  $(".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})
  $(".in-emerald .pokemon-image img").mouseover ->
    $(this).attr("src", $(this)[0].src)
  $(".ptabe-button a").click ->
    show_pokemon_tab($(this).data("tab"))
  if $("#pokemon-embed").length > 0
    show_pokemon_tab("details")