Is it possible to trap a global event in Ember when a template is rendered?
This is so I can invoke initialisation scripts on a per template basis as described. This isn't a candidate for initializers - I'm trying to initialise some jQuery plugins on approx 30% of pages in my application, so doing this once and not repeating myself would be great.
Failing a global hook, what is the most appropriate location to hook a template being rendered? I'm only using templates so I can't trap didInsertElement
on a View.