-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ember Runtime Functions not accessible in fastboot mode #251
Comments
This is a known issue. The problem lies around prototype extensions and the fact that objects can be created in contexts outside of the Ember context (due to the way To guess: You have an array that is coming from najax via or something similar? |
I have a simple array declared as var filters = [{key: 'Procedure'}] and then I am using filterBy on this array which is not accessible till ember-runtime module gets invoked. |
Could you create an example project the exhibits this? The workaround for now would be to use |
It would be great if |
Ember.A doesn't work yet due to ember-fastboot/ember-cli-fastboot#251
Ember.A doesn't work yet due to ember-fastboot/ember-cli-fastboot#251
Ember.A doesn't work yet due to ember-fastboot/ember-cli-fastboot#251
Having a similar issue when rendering in fastboot mode in Ember 2.10.0. When trying to record.get('categories').findBy('token', params.category) a TypeError is thrown: Wrapping a Is there a workaround for this? My temp solution is to either implement |
Having a similar issue when using
|
Using ember-cli-fastboot with ember v2.4.0, and i am trying to access filterBy method on array and i get the error "arrayName.filterBy is not defined"
The text was updated successfully, but these errors were encountered: