Re: eliminate render blocking javascript and css above the fold content

2014-12-09 Thread George Christman
On Tue, Dec 9, 2014 at 11:45 AM, Howard Lewis Ship wrote: > One idea that may come after 5.4 is the ability to aggregate CSS as well as > JavaScript. That would help, reducing this to a couple of requests, rather > than eight. > That would be great. > > Bear in mind that this is all first-time

Re: eliminate render blocking javascript and css above the fold content

2014-12-09 Thread Howard Lewis Ship
One idea that may come after 5.4 is the ability to aggregate CSS as well as JavaScript. That would help, reducing this to a couple of requests, rather than eight. Bear in mind that this is all first-time loading issues. Any subsequent visit will find that all those assets are already in local brow

Re: eliminate render blocking javascript and css above the fold content

2014-12-08 Thread George Christman
nvm, figured it out @Contribute(JavaScriptStack.class) @Core public static void setupCoreJavaScriptStack(OrderedConfiguration configuration) { configuration.override("exception-frame.css", null); configuration.override("tapestry.css", null); configuration.override("

Re: eliminate render blocking javascript and css above the fold content

2014-12-08 Thread George Christman
After digging a little deeper, it looks like it's complaining about css Your page has 8 blocking CSS resources. This causes a delay in rendering your page. None of the above-the-fold content on your page could be rendered without waiting for the following resources to load. Try to defer or asynchr

Re: eliminate render blocking javascript and css above the fold content

2014-12-08 Thread Howard Lewis Ship
Tapestry puts all of its main JavaScript at the bottom of the page. It includes a tiny amount of JavaScript at the top of the page, to introduce an element that prevents unwanted user input until the page is fully loaded. On newer browsers, it will animate in a translucent overlay and a cycling "lo

eliminate render blocking javascript and css above the fold content

2014-12-08 Thread George Christman
This seems to be an improvement google webmaster is requesting, is it possible and if so how would you go about getting it working?