i downloaded ember.js starter kit https://github.com/emberjs/starter-kit
i have not edited of files. whether open included index.html file or on server (simplehttpserver), h2
"welcome ember.js" not appear in browser:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>ember starter kit</title> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/style.css"> </head> <body> <script type="text/x-handlebars"> <h2>welcome ember.js</h2> {{outlet}} </script> <script type="text/x-handlebars" id="index"> <ul> {{#each item in model}} <li>{{item}}</li> {{/each}} </ul> </script> <script src="js/libs/jquery-1.10.2.js"></script> <script src="js/libs/ember-template-compiler-1.11.0.js"></script> <script src="js/libs/ember-1.11.0.js"></script> <script src="js/app.js"></script> <!-- activate test runner, add "?test" query string parameter --> <script src="tests/runner.js"></script> </body> </html>
the ul
works perfectly. why doesn't h2
?
i think regression in ember 1.11.0. updated both ember , ember-template-compiler latest release , seems work. you can these here.
Comments
Post a Comment