Milan Dzenovljanovic

Results 3 comments of Milan Dzenovljanovic

@kseamon I took a look at the implementation. Looks really good. Thank you! Do you think that popover-edit will make it out of the experimental with v10? Keep on rocking.

@canufeel Did anybody solved the problem. I have a pretty simple configuration: records: Ember.computed.alias("model"), queryParams: ["page", "perPage"], page: 1, perPage: 3, pagedContent: pagedArray('records', { pageBinding: "page", perPageBinding: "perPage" }), totalPagesBinding:...

In each controller where you use this add-on: ``` memberships: Ember.computed("model.[]", function () { var memberships = this.get("model"); if (memberships !== null) { return memberships; } else { return [];...