javascript - What are the potential arguments passable to Ember.run() -
i've come across few time:
enber.run(null, resolve, results);
on ember's documentation ember.run()
have ember.run(function() {})
.
the actual ember.js
file isnt different.
what possible arguments?
if follow link under "defined in:" ember.js line 28 can see it's awaiting three parameter, namely target
, method
, args*
args
referred here:
any additional arguments wish pass method
also, suggest use existing functions of ember.run
if can solve specific problem them.
Comments
Post a Comment