diff --git a/src/wp-content/themes/positive/lib/js/custom.js b/src/wp-content/themes/positive/lib/js/custom.js index 6d53e28..7e67ebd 100644 --- a/src/wp-content/themes/positive/lib/js/custom.js +++ b/src/wp-content/themes/positive/lib/js/custom.js @@ -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); \ No newline at end of file + +})(jQuery); +