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