Closed p01 closed 12 years ago
I can do a first pass of review fixes and code style cleanup. Any recommendation to style the nested Array Iteration methods call ?
You mean e.g.
ctx.resourceList
.forEach(function() {});
I'd do
ctx.resourceList.forEach(function() {
...
});
instead. If there are more, I'd do
ctx.resourceList
.forEach(function() {
})
.filter(function() {
});
Yup. Thanks.
After fixing the outstanding issues, this is good to go IMO.
Latest commits look fine, just one question.
Looking fine.
Checked the last 5 commits, seems fine. If it's all reviewed now it would be good to merge it.
Before I continue, it would be nice if the code could be cleaned up a bit to conform to the style guide. Most issues are camelcase, extra spaces (or no spaces) around operators or inside arguments list.