Added automatic day scrolling on page load

This commit is contained in:
Bram van der Veen 2015-10-06 08:24:31 +02:00
parent 66ed3cfaf6
commit a01a848f4b

View file

@ -1 +1,5 @@
//Nothing to see here folks
$(document).ready(function () {
var day = (new Date()).getDay() - 1;
$('#wrapper').scrollLeft($(document).width() * day);
});