| /** |
| * Sets up the CSS style lazyloader to run at the appropriate event. Runs at |
| * requestAnimationFrame if it is available, since that will ensure the page has |
| * rendered before loading the CSS. Otherwise, wait until onload. |
| * @export |
| */ |
| pagespeed.CriticalCssLoader.Run = function() { |
| var raf = pagespeedutils.getRequestAnimationFrame(); |
| if (raf) { |
| raf(function() { |
| window.setTimeout(pagespeed.CriticalCssLoader.addAllStyles, 0); |
| }); |
| } else { |
| pagespeedutils.addHandler( |
| window, 'load', pagespeed.CriticalCssLoader.addAllStyles); |
| } |
Hi,--
Following pageSpeed advices, I moved a couple of CSS references to the bottom of the page, just before </body>.
You can see that at at http://www.facomunicacion.com/noticias/cetraa-el-taller-no-conectado-tiene-fecha-de-caducidad.html
But pageSpeeds tells me those 2 references (responsiveslides.css and css/lightbox.css) are still considered as blocking resources.
Can you please help me? Thanks you very much in advance.
Alex
You received this message because you are subscribed to the Google Groups "pagespeed-insights-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pagespeed-insights-...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/pagespeed-insights-discuss/bd8b7776-391a-4ed1-86d3-170bbbf69a23%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.