Cookies and `ember serve`
@Adhamh wrote: In dev we are trying to send a cookie to a server, but in chrome and safari the cookie is not being sent by the browser. Our server is hosted at https://foo.bar.example.com and we have...
View ArticlebelongsTo relation call returns null within observer
@tookien wrote: Hi, I have belongsTo relation on a model: //book.js export default DS.Model.extend({ name: attr('string'), item: belongsTo('item', {async: true}), }); //item.js export default...
View ArticleLinks with and w/o {{link-to}} helper
@Yaroslav_Poliakov wrote: Hi, guys!I have faced a problem with links. When I use links via link-to helper it works without reloading the whole page. It just re-renders some part of app. But, I just...
View ArticleBuilding For Production
@lamamasters wrote: Hello,I am just beginning with javascript frameworks and I have 2 questions. 1). After calling the ember build --env production, the system generates the files in the dist/ folder....
View ArticleEmber.computed.sort property not updating
@ManuZenou wrote: Hi Guys, I've been cracking my head for the last several days, trying to understand what am I doing wrong.I'm implementing an infrastructure of lists for my app, which can include...
View ArticleEmber tests with HTTPS
@Kondrat_Shmoylov wrote: Hi all Do you know any way to run ember acceptance test on https host?Like https://localhost:PORT_NUMBER/ Thanks Posts: 1 Participants: 1 Read full topic
View ArticleHow can I access methods of another controller (or should I use services...
@alidcastano wrote: For example: when a user creates an account in the index route to be able to automatically run a method (e.g. createSomething) from the home route. I tried the controllerFor but...
View ArticleResetting scrool router
@Alessio_Varalta wrote: Hi when i change the page there is many case that my page is not at the top so I see on the ember guide...
View ArticleHow to use built-in node.js as an API server?
@pacific202 wrote: Given that ember is built on top of node.js, how does one add express in order to develop the restful services required by ember data into the same server instance? Posts: 3...
View ArticleAccount disabled on Slack
@mahtuag wrote: I signed up for the Slack nearly an year ago but temporarily gave up on Ember (and frontend development) so never posted anything there. I tried to login to the slack today (after...
View ArticleWhat are the advantages of async relationships?
@phcoliveira wrote: First of all, this is an honest question. If there are advantages in using async relationships, I'm just failing to see them. Handling the promises in templates is easy thanks to...
View ArticleHow to debug startup times
@accelerate wrote: The bootup times for my Ember app have been getting really slow as of late. How do I figure out what's specifically causing the long load times and see if there's something I can do...
View ArticleUsing promises with computed properties?
@tsteuwer wrote: Hey everyone, I'm trying to use a computed property to return models when an array of ids changes on a service. It looks like this: people: computed('ids', function() { const promises...
View ArticleUnable to get Meta content in Ember 2.9
@Muthu_2016 wrote: Hai, We are migrating our ember application from 1.0.0-beta to 2.9. During this migration we are unable to get meta data in the respone of Put request. Existing code:...
View ArticleGetting a random record with ember data
@palmo25 wrote: Hi,I've stored a collection of records in a firebase database. I've connected the firebase database to my ember app using emberfire.I 'd like to get just one random record from the...
View ArticleWhy should Ember.run.join be used sparingly? Why not use it instead of...
@ctusch wrote: According to the guides one should wrap the content of callback originating from outside of Ember inside Ember.run call. I think I understand the reason behind this. But now I saw that...
View ArticleData binding from parent to component
@KARIM_SQUALLI wrote: i have just started learning ember 1 week ago, and i'm little confused about data-biding : i have index controller that have a foor property, test-component that have a its bar...
View ArticleDeep watch arbitriary JSON keys with computed properties in Ember
@benoror wrote: I have a use case where a Model has a JSON attribute used for arbitrary configurations: configuration: DS.attr(). I have a configurationService (initialized in every...
View ArticleStrange error generated by img tag in an acceptance test
@Henry wrote: I was having this error in an acceptance test Uncaught (in promise) EmberError {description: undefined, fileName: undefined, lineNumber: undefined, message: "Assertion Failed: You have...
View ArticleUnderstanding Router `didTransition` event
@fguillen wrote: I am trying to execute code every time the User changes the page. I am reading the Router.didTransition event documentation, and I try to add it to my Router: # app/router.js const...
View Article