0

I will start by saying I am new to Ember. I am starting to wrap my mind around the concepts but I haven't been able to make it work...

I tried following the basic tutorial on the emberjs.com website:

https://guides.emberjs.com/v2.2.0/tutorial/routes-and-templates/

As far as I can tell I have everything installed/updated properly, and I understand what is supposed to happen...but when I run the server via the "ember server" command my templates do not load. The index.html page is being picked up, but anything I put in my templates (including the application.hbs) is missing.

Any ideas?? I really want to get into Ember, but I can't get past page one of any tutorial I try because of this issue. Please help! :)

2
  • 1
    Can you add your project to github so we can see it? Odds are you forgot an {{outlet}} tag Commented Jan 12, 2016 at 8:11
  • 1
    Possible duplicate of New Ember app gives blank screen Commented Jan 12, 2016 at 11:33

1 Answer 1

3

You might be facing a recent ember-cli bug (which is fixed by Ember CLI 1.13.14 - released a few hours ago.). Several people have encountered that issue recently.

For reference, the fix (if you're not updating ember-cli) is (from this answer by Lawree)

This is a bug due to a new version of jQuery. For now you can change the following line in your bower.json file. Then run bower install and it should work.

"jquery": "^1.11.3", to

"jquery": "1.11.3",
Sign up to request clarification or add additional context in comments.

2 Comments

Nice catch! Voting to close as dupe.
Thanks! I ended up reinstalling ember and it now works so that was probably it :)

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.