what is the use of ready method in Ember.Application? Will it be called after all the views are initialized? Otherwise is there any handle i can get from ember which gives callback after all views are initialized.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ember.Application#readywill fire after DOM ready and your application has been initialized.What problem are you trying to solve that you’d like to have a callback after all views have been initialized?
Ember.View#didInsertElementwill tell you when a specific view has been inserted into the DOM.