##// END OF EJS Templates
Dictionary key/value typo
Jason Grout -
Show More
@@ -639,7 +639,7 b' define(['
639 639 var keys = Object.keys(d);
640 640 var values = [];
641 641 keys.forEach(function(key) {
642 values.push(key);
642 values.push(d[key]);
643 643 });
644 644 return Promise.all(values).then(function(v) {
645 645 d = {};
General Comments 0
You need to be logged in to leave comments. Login now