odd number
March 12, 2008 - 4:32pm — object0
| Project: | Ajax Broken Link Checker |
| Version: | 0.1-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | object0 |
| Status: | closed |
Jump to:
Description
If the amount of links on a web page == odd number (for ex. 1,3,5,7,9 etc) then the last link won’t be marked as “active” or “inactive”. That’s it..

Comments
#1
change:
while(urls.length > 1) {
to:
while(urls.length > 0) {
anyway, it works for me ;)
#2