Changeset f517e1b8ee417566e36347c34c2ccc508f6e60a2
- Timestamp:
- 10/30/08 05:06:40
(5 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1225343200 +0000
- git-parent:
[9748163170dd809197dc3444bd4049f73fef5ec0]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1225343200 +0000
- Message:
scoping issue causing back pagination not to work, refs #22
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc2577bd |
rf517e1b |
|
| 15 | 15 | if(c > l) { |
|---|
| 16 | 16 | if(o > 0) { |
|---|
| 17 | | var po = Math.max(o-l, 0); |
|---|
| 18 | | $('<a/>').html( (po+1) + ' - ' + (po+l) ) |
|---|
| | 17 | var pop = Math.max(o-l, 0); |
|---|
| | 18 | $('<a/>').html( (pop+1) + ' - ' + (pop+l) ) |
|---|
| 19 | 19 | .click(function() { |
|---|
| 20 | | perform_datapoint_search(string,po,r.limit); |
|---|
| | 20 | perform_datapoint_search(string,pop,r.limit); |
|---|
| 21 | 21 | return false; |
|---|
| 22 | 22 | }).appendTo(page); |
|---|