Opening document properties will load ~50 JavaScript files and ~20 css files. Other share screens require quite the same amount of these kind of files.
~70 http requests to view one page is somewhat heavy for IE with its tight threading model. Although these are cached on client side, a http request is made every time to make sure the content of these hasn’t changed.
Is there a way to:
1. Figure if there are unneeded files we don’t want to load to client side?
2. Bundle all js and css to two files that will only take 2 http request to be delivered to client?
Many thanks.