[fix] have latter stores precede the former stores.
This commit is contained in:
parent
05d73de3d0
commit
0bb89ee2b4
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ Provider.prototype.get = function (key, callback) {
|
|||
// the entire set of stores, but up until there is a defined value.
|
||||
//
|
||||
var current = 0,
|
||||
names = Object.keys(this.stores),
|
||||
names = Object.keys(this.stores).reverse(),
|
||||
self = this,
|
||||
response,
|
||||
mergeObjs = [];
|
||||
|
|
Loading…
Reference in a new issue