rooster.io/resources/js/script.js

11 lines
251 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);
2016-03-22 16:08:22 +01:00
$('#close').click(function () {
$('.bijles').remove();
$('#close').remove();
})
});