mirror of
https://github.com/ZetaKebab/kesper.git
synced 2025-07-03 02:17:38 +00:00
First pass at new Casper homepage
This commit is contained in:

committed by
Hannah Wolfe

parent
fd4aebe2e2
commit
d6fec8d50f
@ -6,7 +6,16 @@
|
||||
(function ($) {
|
||||
"use strict";
|
||||
|
||||
$(document).ready(function () {
|
||||
// code goes here
|
||||
$(document).ready(function(){
|
||||
|
||||
sizeContent();
|
||||
$(window).resize(sizeContent);
|
||||
|
||||
function sizeContent() {
|
||||
var newHeight = $(window).height() - 30;
|
||||
$("#sitehead").css("height", newHeight);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
}(jQuery));
|
Reference in New Issue
Block a user