Okay, so I have a page that has some high-res images that look great when loaded (but not so great when users see half-loaded ones at initial page download). I've researched jquery pre-loading images (such as this very helpful Q/A here), but the thing is, my page is basically an app controlled by Ember.js -- so I'm not sure where to best insert the image-preloading code, and I can't seem to find any documentation on Ember.js code being run before page completes loading (the ready function might be too late for preloading images as it runs after the page is finished right?)
Bottom line: If I have Ember.js, where's the most optimal place to put image pre-loading code?