Skip to content

Commit

Permalink
Merge pull request #10217 from marcioj/item-controller-doc-fix
Browse files Browse the repository at this point in the history
Remove outdated documentation of itemController [ci skip]
  • Loading branch information
stefanpenner committed Jan 14, 2015
2 parents c0f38aa + 4a43e2f commit 554842c
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions packages/ember-runtime/lib/controllers/array_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,22 +105,18 @@ import EmberError from 'ember-metal/error';
export default ArrayProxy.extend(ControllerMixin, SortableMixin, {

/**
The controller used to wrap items, if any. If the value is a string, it will
be used to lookup the container for the controller. As an alternative, you
can also provide a controller class as the value.
A string containing the controller name used to wrap items.
For example:
```javascript
App.MyArrayController = Ember.ArrayController.extend({
itemController: Ember.ObjectController.extend({
//Item Controller Implementation
})
itemController: 'myItem' // use App.MyItemController
});
```
@property itemController
@type String | Ember.Controller
@type String
@default null
*/
itemController: null,
Expand Down

0 comments on commit 554842c

Please sign in to comment.