16 lines
518 B
HTML
16 lines
518 B
HTML
|
<script type="text/javascript">
|
||
|
function update_dimensions(){
|
||
|
var h = jQuery('#nav').outerHeight();
|
||
|
var h2 = jQuery('#header').css('margin-top',h+"px").outerHeight();
|
||
|
jQuery('.doc-sidebar').affix({offset:h2});
|
||
|
var style = ".doc-sidebar.affix{top:"+(h+20)+"px;}";
|
||
|
if (jQuery('#cssafix').length)
|
||
|
jQuery('#cssafix').html(style);
|
||
|
else
|
||
|
jQuery('head').append("<style id='cssafix'>"+style+"</style>");
|
||
|
}
|
||
|
jQuery(function(){
|
||
|
update_dimensions();
|
||
|
jQuery(window).resize(update_dimensions);
|
||
|
});
|
||
|
</script>
|