1
/* Functions used for the search */
3
/* Show a jquery datepicker when clicking on an element with this class */
5
$( ".datepicker" ).datepicker({
6
dateFormat: "yy-mm-dd",
12
/* Hide elements which has this class */
13
/* TODO (Franku): Consider to use this also in wiki */
15
$( ".closeable" ).click(function() {
16
if ( $( this.nextElementSibling ).is( ":hidden" ) ) {
17
$( this.nextElementSibling ).show( "slow");
19
$( this.nextElementSibling ).slideUp( "slow");