How can I pass arguments to init() or access the arguments passed to create() inside init() in ember.js
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
just use Example:
|
|||
|
|
|
Use closures and create a new init function that passes the closed argument to its prototype init function. Also, this way you don't end up overwriting sensitive properties, like methods for example. note: init is called after all the properties are set by the constructor
|
||||
|
|