Skip to content

Commit

Permalink
Merge pull request #11513 from stefanpenner/remove-rc-dc
Browse files Browse the repository at this point in the history
Move away from ArrayComputed/ReduceComputed
  • Loading branch information
rwjblue committed Jun 26, 2015
2 parents 9c919ca + 9c52115 commit 47ec662
Show file tree
Hide file tree
Showing 9 changed files with 1,031 additions and 3,619 deletions.
6 changes: 5 additions & 1 deletion packages/ember-metal/lib/chains.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,9 +354,13 @@ ChainNode.prototype = {

// then notify chains...
var chains = this._chains;
var node;
if (chains) {
for (var key in chains) {
chains[key].didChange(events);
node = chains[key];
if (node !== undefined) {
node.didChange(events);
}
}
}

Expand Down
3 changes: 1 addition & 2 deletions packages/ember-metal/lib/mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,8 +542,7 @@ export function mixin(obj, ...args) {
@namespace Ember
@public
*/
export default Mixin;
function Mixin(args, properties) {
export default function Mixin(args, properties) {
this.properties = properties;

var length = args && args.length;
Expand Down
192 changes: 0 additions & 192 deletions packages/ember-runtime/lib/computed/array_computed.js

This file was deleted.

Loading

0 comments on commit 47ec662

Please sign in to comment.