diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-15 22:03:47 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-15 22:03:47 -0400 |
commit | 3c640cb94438dda317198843f5b498306a2bf989 (patch) | |
tree | 67ce7dc393383d5205a9e1fa56db3aa9ff18d893 /sitestatic | |
parent | 2ea4e6f4d5245dd5e43c90d54635477c6e7dd6a7 (diff) | |
parent | 1a2709552704a91f9601a13c350153b3daf3a455 (diff) |
Merge tag 'release_2014-12-08' into archweb-generic
Minor fixes and package updates
Diffstat (limited to 'sitestatic')
-rw-r--r-- | sitestatic/archweb.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sitestatic/archweb.js b/sitestatic/archweb.js index 43816c5b..dce9cd0c 100644 --- a/sitestatic/archweb.js +++ b/sitestatic/archweb.js @@ -303,12 +303,12 @@ function filter_packages() { var cells = $(this).children('td'); /* all this just to get the split version out of the table cell */ - var ver_a = cells.eq(2).find('span').text().match(pat); + var ver_a = cells.eq(2).text().match(pat); if (!ver_a) { return true; } - var ver_b = cells.eq(3).find('span').text().match(pat); + var ver_b = cells.eq(3).text().match(pat); if (!ver_b) { return true; } |