Dictionary key/value typo

This commit is contained in:
Jason Grout 2014-10-31 22:45:25 +00:00 committed by Jonathan Frederic
parent fc94383487
commit f11a51bb77

View File

@ -639,7 +639,7 @@ define([
var keys = Object.keys(d);
var values = [];
keys.forEach(function(key) {
values.push(key);
values.push(d[key]);
});
return Promise.all(values).then(function(v) {
d = {};