Sha256: 91530a0ced4d0d4b7fcd813897fa887261d92e1c75175cfb14583bf4e51428ec
Contents?: true
Size: 468 Bytes
Versions: 23
Compression:
Stored size: 468 Bytes
Contents
jQuery(document).ready(function() { var contentHeight = Math.round(jQuery(window).height() - 130); resizeContent(contentHeight); window.onresize = function() { contentHeight = Math.round(jQuery(window).height() - 130); resizeContent(contentHeight); }; if(jQuery("#notice")) { setTimeout(function() { jQuery("#notice").fadeOut(500); }, 20000); }; }); resizeContent = function(newHeight) { jQuery("#content").css({"height": newHeight+"px"}); }
Version data entries
23 entries across 23 versions & 2 rubygems