Open cmawhorter opened 8 years ago
The Collection object returned by uses() doesn't really work right and is incomplete.
uses()
Calling .url() on any of the items it contains leads to an undefined error but doing collection.forEach(function(page) { page.url() }) works. o.0
.url()
collection.forEach(function(page) { page.url() })
Collection should be rewritten because it contains numerous problems.
this project has an implementation of subclassing an array that seems pretty well tested. that'd be a start
The Collection object returned by
uses()
doesn't really work right and is incomplete.Calling
.url()
on any of the items it contains leads to an undefined error but doingcollection.forEach(function(page) { page.url() })
works. o.0Collection should be rewritten because it contains numerous problems.