Ed Dorsey

Results 18 comments of Ed Dorsey

Ran into this issue as well: Fails with `split` on undefined error: ``` {{fa-icon "circle" class=iconClass fixedWidth=true}} ``` Works: ``` {{fa-icon "circle" class=(concat iconClass "") fixedWidth=true}} ```

We're running into this same issue as we have an attribute on a model that is meant to be JSON. We're using Ember Data and this attribute on the model...

Anyway to get this merged in? We're running into this now with any id that is the value `0`. It's affecting version `3.4.3` and not just the latest. ---- Edit...

This is a regression. `self` links in relationships were working in `3.4.3` but no longer seem to work in `3.6.6` After a little digging it appears that this is in...

Seems like it might be firing an event for the old date being cleared, and then the new date being set. If you click on the same date twice it...

Just wanted to add that I'm trying the same or very similar setup and running into the same/similar issue. We have an Azure App with the `Sharepoint.Sites.Selected` Application permission applied...

I was still using Ember 1.0.0 so I went ahead and dropped in Ember 1.1.0-BETA.4 into the vendor folder. I'm using the FixtureAdapter so I manually updated `config/store.js` based on...

This is my `routes.js`. Switched to LSAdapter after updating it based on your PR but still get the same error. ``` var App = require('./app'); App.Router.map(function() { /* * When...

Well I'm starting to think that the problem is with all the changes in ember-data when moving to 1.0.0-BETA.3. I checked this document which shows the transitions required (https://github.com/emberjs/data/blob/master/TRANSITION.md). Based...

Okay, got things working. I followed the ember.js getting started guide and downloaded the two files linked in that document: ember.js -> http://builds.emberjs.com/tags/v1.0.0/ember.js ember-data.js -> http://builds.emberjs.com/tags/v1.0.0-beta.3/ember-data.js My suggestion would be...