[fix] have latter stores precede the former stores.

This commit is contained in:
Christopher Jeffrey 2014-02-11 12:40:41 -06:00
parent 05d73de3d0
commit 0bb89ee2b4

View file

@ -222,7 +222,7 @@ Provider.prototype.get = function (key, callback) {
// the entire set of stores, but up until there is a defined value. // the entire set of stores, but up until there is a defined value.
// //
var current = 0, var current = 0,
names = Object.keys(this.stores), names = Object.keys(this.stores).reverse(),
self = this, self = this,
response, response,
mergeObjs = []; mergeObjs = [];