Skip to content

Commit

Permalink
Fix caching of cascaded definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Johnston committed Sep 7, 2009
1 parent be51e97 commit 21c33fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js-wiring.js
Expand Up @@ -301,7 +301,7 @@ var Wiring = (function() {
casc = merge( {}, par, def );
casc.ctorArgs = merge( [], par.ctorArgs, def.ctorArgs );
casc.properties = merge( {}, par.properties, def.properties );
return casc;
def = casc;
}
this[ cache ] = merge( {}, Def.defaults, def );
}
Expand Down

0 comments on commit 21c33fc

Please sign in to comment.