2013-12-28 23:45:13 +01:00
|
|
|
# Place all the behaviors and hooks related to the matching controller here.
|
|
|
|
# All this logic will automatically be available in application.js.
|
|
|
|
# You can use CoffeeScript in this file: http://coffeescript.org/
|
2013-12-29 00:23:08 +01:00
|
|
|
#
|
|
|
|
$(document).ready ->
|
|
|
|
$('form.region_selector select').change ->
|
2013-12-29 16:47:57 +01:00
|
|
|
this.form.submit()
|
2013-12-29 17:45:53 +01:00
|
|
|
|
|
|
|
selector = $('main form.region_selector + h2')
|
|
|
|
year = selector.html().substr selector.html().search(/\d{4}</), 4
|
|
|
|
selector.html selector.html().replace(/\d{4}</, '<a class="year_selector" href="?year='+year+'">'+year+'</a><')
|