rooster.io/resources/js/script.js
2015-10-06 08:24:31 +02:00

6 lines
158 B
JavaScript

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