I have a very simple Ember.js app which works correctly in IE and Chrome, but fails in Firefox (9.0.1 and 10.0). Any reason why? Here's the code:

<!doctype html>

<html>
<head>
    <title>Template Name</title>
</head>
<body>
    <script type="text/x-handlebars" data-template-name="my-template">
        {{App.user.name}}
    </script>

    <div id="container"></div>

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script type="text/javascript" src="http://cloud.github.com/downloads/emberjs/ember.js/ember-0.9.4.js"></script>

    <script type="text/javascript">
        window.App = Ember.Application.create();

        App.user = Ember.Object.create({
            name: 'John'
        });

        App.view = Ember.View.create({
            templateName: 'my-template'
        });

        App.view.appendTo('#container');
    </script>
</body>
</html>
link|improve this question

71% accept rate
What is the error that you are experiencing? – Veebs Feb 10 at 5:53
feedback

1 Answer

up vote 5 down vote accepted

The error in firefox is

uncaught exception: Error: <Ember.View:ember143> - Unable to find template "my-template".

This would seem to indicate that the template script has not been evaluated at the point where the app executes. The solution is to wait for onload. Wrap your appendTo like this:

$(function() {
    App.view.appendTo('#container');
});
link|improve this answer
1  
You could also put that call into the Ember application's ready callback: App = Ember.Application.create({ ready: function() { App.view.appendTo('#container'); }});. – Tom Whatmore Feb 10 at 10:47
Thanks. The ember.js doc page does not mention the ready function. Neither does the ember-starter-kit structure the application this way. Is there another place I should be looking for this kind of information? – Naresh Feb 10 at 17:49
In general, what should go in the ready function vs. outside? In fact, should all Ember object creation/definition go inside the jQuery ready() function, including creation of the Empper application? – Naresh Feb 10 at 17:58
1  
These are both very good questions that I hope the documentation eventually will clarify. Right now I tend to do class definitions immediately and object instantiations/view-inserts in onReady(). – Martin Algesten Feb 11 at 3:24
I got the same problem just a sec ago. This is something that ember.js should definitely document. – jsalonen Feb 21 at 19:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.