voyageur-review/lib/interface.coffee

16 lines
333 B
CoffeeScript
Raw Normal View History

2016-01-15 03:06:03 +02:00
###
Salet interface configuration.
###
$(document).ready(() ->
$("#ways").on("click", "a", (event) ->
event.preventDefault()
undum.processClick($(this).attr("href"))
)
$("#inventory").on("click", "a", (event) ->
event.preventDefault()
)
$("#load").on("click", "a", (event) ->
window.location.reload()
)
2016-01-15 03:06:03 +02:00
)