Skip to content

Commit

Permalink
commit dist
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Gran committed Mar 8, 2016
1 parent c3daf94 commit 16705e0
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions dist/MobStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,15 @@ var MobStore = function () {
var value = _ref2.value;

var assocStore = MobStore.storeForType(typeName);
var aInstances = undefined;
if (value) {
var result = assocStore.inject(value, level + 1, callbackFns);
aInstances = result.instances;
callbackFns = result.callbackFns;
if (assocStore) {
var aInstances = undefined;
if (value) {
var result = assocStore.inject(value, level + 1, callbackFns);
aInstances = result.instances;
callbackFns = result.callbackFns;
}
association.assign(instance, aInstances);
}
association.assign(instance, aInstances);
});

return instance;
Expand Down

0 comments on commit 16705e0

Please sign in to comment.