Jack Matthews
Jack Matthews
I am trying to use this library to test a deeply nested async call using callbacks. ``` javascript var self = this; this.store.find('employee').then(function(employee) { //promise #1 employee.get('address').then(function(address) { //promise #2...
How can I know what element (start or end date) has changed when using a date-range and listening to the "changeDate" event?
I have the following test which is trying to click a button is inside a modal. ``` const selector = `button:contains("${buttonText}"), a:contains("${buttonText}")`; const found = find(selector, Ember.$('body')); assert.equal(1, found.length, `Should...
It would be cool if the entities could be viewed as some sort of visual ER diagram. Relationships marked using arrows etc.
Similar to #6 it would be good if there was a way to save and retrieve your schema. Maybe it could export to and read from a CSV file or...
Bootstrap supports large modals via `modal-lg`, there does not seem to be a way I can find to do this using the modal component. I had to do it in...
I have a modal that is rendered into a modal outlet as described here: http://emberjs.com/guides/cookbook/user_interface_and_interaction/using_modal_dialogs/ I need the modal to be visible as soon as it is rendered. I tried...
I have a situation where I show a map for an address. When I move to a different route I get the following error: ``` javascript Uncaught TypeError: googleObject[("get" +...
Is there currently a way to cancel the retry, say if the use presses a cancel button or something. If not is this a feature you would consider adding?
I am in the process of converting our project in preparation for Ember 2.0. One of the suggestions is to favour `Ember.Controller` over `Ember.ArrayController` and `Ember.ObjectController` as explained [here](https://gist.github.com/samselikoff/1d7300ce59d216fdaf97?utm_source=Ember+Weekly&utm_campaign=fa80cb60ca-Ember_Weekly_Issue_83&utm_medium=email&utm_term=0_e96229d21d-fa80cb60ca-106353489). The...