lablanca.js 702 B

1234567891011121314151617
  1. function expand(year){
  2. console.log('Expanding ' + year);
  3. }
  4. function expandDay(id){
  5. if (document.getElementById('day_schedule_' + id).style.maxHeight == '120em'){
  6. document.getElementById('day_schedule_' + id).style.maxHeight = '0em';
  7. setTimeout(function(){document.getElementById('slid_day_' + id).src = '/img/misc/slid-right.png';}, 500);
  8. }
  9. else{
  10. document.getElementById('day_schedule_' + id).style.maxHeight = '120em';
  11. setTimeout(function(){document.getElementById('slid_day_' + id).src = '/img/misc/slid-down.png';}, 500);
  12. }
  13. document.getElementById('slid_day_' + id).style.opacity = '0';
  14. setTimeout(function(){document.getElementById('slid_day_' + id).style.opacity = '1';}, 500);
  15. }