Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been getting started with Angular JS and using it as a front-end to integrate with a Play Framework POC. I've already worked through the tutorial.

I cloned my front end from the seed project on github. It has an app/index.html (which I'm using as my main page) and an app/index-async.html. What is the point of the latter? Is it really necessary?

share|improve this question

1 Answer

up vote 12 down vote accepted

I don't see an app/index.ajax.html. I'm assuming you mean app/index-async.html.

The two files are interchangeable, and you can use either one to build your application. index-async.html loads scripts asynchronously, which might give you a faster bootstrap time. index.html loads scripts synchronously, which is often a bit slower, but the intention is that the code is easier to understand for someone learning to use the framework.

To read more about asynchronous bootstrapping, check out the docs here: http://docs.angularjs.org/guide/bootstrap

share|improve this answer
I just corrected the mistake you noticed. Thanks! – Alan Jul 20 '12 at 14:24
Sure it's faster, but does it make a difference on how the rest of the application is coded. Or is it just the first page that changes? – Arturo Hernandez Mar 24 at 0:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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