window.onloadが発火する前に新たなリソースを読み込み始めてしまうと、そのリソースが読み込み終わるまでwindow.onloadが待たされます。 もし、できるだけ早くwindow.onloadを発火させたい場合は、 config メソッドで delay:true を指定することで読み込みをwindow.onloadで始めるようにできます。
Most of us think that document.ready and window.onload is one of the same thing the only difference is that window.onload is used in javascript while we use document.ready in Jquery. In window.onload ...