sproutit / sproutcore-abbot

SproutCore 1.0 Build Tools
http://www.sproutcore.com
78 stars 17 forks source link

Added 'defer' to script tags #34

Closed geoffreyd closed 12 years ago

geoffreyd commented 14 years ago

This commit adds 'defer' to script tags, to allow the browser to keep load other parts of the page.

'defer' as apposed to 'async' keeps the order of execution of the linked files. It is also supported by most browsers (as pointed out in the following article). All files must still be loaded before DOMContentLoaded is called.

http://webkit.org/blog/1395/running-scripts-in-webkit/