0.2.1 • Published 4 years ago

ember-legacy-controllers v0.2.1

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

Ember-legacy-controllers

Ember.ObjectController and Ember.ArrayController extracted as an standalone addon.

Installation

Run ember install ember-legacy-controllers and you're good to go

Usage

Import the classes from the addon and extend them as with the old Ember.ArrayController and Ember.ObjectController

// app/controllers/posts.js
import ArrayController from 'ember-legacy-controllers/array'

export default ArrayController.extend({
  // ...
})
// app/controllers/post.js
import ObjectController from 'ember-legacy-controllers/object'

export default ObjectController.extend({
  // ...
})