Hi I just upgraded my meteor app to 0.9.1.1 and I keep getting these 2 warnings in my console
W20140910-18:37:07.781(3) (blaze.js:67) Warning: Blaze.render without a parent element is deprecated. You must specify where to insert the rendered content. logging.js:65
W20140910-18:37:07.787(3) (blaze.js:67) Warning: Blaze.insert has been deprecated. Specify where to insert the rendered content in the call to Blaze.render. logging.js:65
I have no idea from where the error occurs, or why it happens.
Any idea of what I might be missing ?
Thanks
The blaze API changed in meteor 0.9+ If you are using
You need to update
UI.insert()
&UI.insert(UI.renderWithData())
to the new Blaze API:
Check updates: http://docs-0.9.1.meteor.com/#blaze_render