Se pone barra lateral tan larga como el contenido

git-svn-id: https://192.168.0.254/svn/Proyectos.Afetec_Web/trunk@7 828b2857-b6d9-ce4d-95e2-bbc4707c23a3
This commit is contained in:
roberto 2011-12-20 13:06:44 +00:00
parent fdede12cb9
commit 1beaa0b3c2

View File

@ -356,6 +356,20 @@
}); });
jQuery(document).ready(function() {
if (document.readyState != "complete") {
//console.info('ready...');
setTimeout( arguments.callee, 100 );
return;
}
contenido = jQuery("#withsidebar-content");
barra = jQuery("#narrow-content");
barra.height(contenido.height());
});
})(jQuery); })(jQuery);