Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Imported from: http://groups.google.com/group/in-portal-dev/browse_thread/thread/574f18ad425fb183#

I've found an interesting resource https://developers.google.com/speed/docs/best-practices/rules_intro and here are some tips I've found interesting and useful in In-Portal:

https://developers.google.com/speed/docs/best-practices/rtt#PutStylesBeforeScripts (see "not_optimal_page_loading.png" attachment, lots of violet blocking requests)
  1. load stylesheet files before javascript files
  2. put any inline javascript after loading all of them
  1. don't serve cookies long with stylesheet and javascript files
  1. use jpegtran and similar tools to remove useless (for browser) information from images used on websites (including admin console)
  1. use efficient CSS selectors - selectors that not only work, but are processed faster by browser then other selectors, but work the same
Surely there is more to that document, that I was able to discover.
  • No labels