Sorry, my English is not good enough to describe more complex things, but I will do my best.
I'm going crazy. I just want to define a default content for an outlet in Ember.js, but I don't find any solution. The examples I found use url matching, but in my case there is no special URL to recognize the default template.
Let's see:
application <-- the application frame, contains an outlet
/ <-- the index, contains also an outlet
/foobar <-- some other stuff, which will be rendered in the outlet of index, if the URL is set => that works!
My problem is to render a default template to the outlet of index, if URL == '/'
Any suggestions?