rooster.io/resources/js/script.js

6 lines
158 B
JavaScript
Raw Normal View History

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