Stanley Stuart
Stanley Stuart
Closing this for now since I found a workaround to get around my problem. This could potentially be revisited in Glimmer itself if the RFCs in my previous comment are...
I think @bmac would be able to point you in the right direction here. I don't know if he has it in his guides updates.
Looks like a bug in handlebars upstream from the stack trace. Can you file a bug upstream please?
There's a chance that it's processing the compiled handlebars file maybe. Without seeing more of the source code I'm not sure what's happening here sorry. The migrator should not be...
I think the path moving forward for this is moving stuff to the application controller and using needs... might be possible to do automatically too. Just cuz container is private...
What about something like... ``` javascript var promise = new Ember.RSVP.Promise(function(resolve, reject){ ic.ajax.raw(url, { dataType: 'jsonp', jsonpCallback: 'callbackName' }).then(function(results){ Ember.run(null, resolve, results); }); }); ``` It should be noted that...
What does "constructor tampering" mean?
Hi, The Heroku CLI outputs should be outputting this warning on STDERR, not STDOUT. This allows us to display the error, while keeping something like `heroku apps --all --json |...