forked from science-ation/science-ation
Hide events that are not in the time frame defined by the schedule
This commit is contained in:
parent
49f127dbd1
commit
23142cf01a
@ -197,15 +197,19 @@
|
|||||||
|
|
||||||
var tablecellid=eventobj.hour+'_'+eventobj.minute+'_'+eventobj.location;
|
var tablecellid=eventobj.hour+'_'+eventobj.minute+'_'+eventobj.location;
|
||||||
|
|
||||||
|
if($("#"+tablecellid).length) {
|
||||||
var eheight=((eventobj.duration/15)*<?=$ROWHEIGHT?>)-<? echo $BORDERSIZE*2; ?>;
|
var eheight=((eventobj.duration/15)*<?=$ROWHEIGHT?>)-<? echo $BORDERSIZE*2; ?>;
|
||||||
var ewidth=$("#"+tablecellid).width()-<? echo $BORDERSIZE; ?>;
|
var ewidth=$("#"+tablecellid).width()-<? echo $BORDERSIZE; ?>;
|
||||||
|
|
||||||
var p=$("#"+tablecellid).offset();
|
var p=$("#"+tablecellid).offset();
|
||||||
$("#"+item.id).css(p);
|
$("#"+item.id).css(p);
|
||||||
$("#"+item.id).show();
|
$("#"+item.id).show();
|
||||||
$("#"+item.id).height(eheight);
|
$("#"+item.id).height(eheight);
|
||||||
$("#"+item.id).width(ewidth);
|
$("#"+item.id).width(ewidth);
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
$("#"+item.id).hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user