Parent Directory
|
Revision Log
|
Revision Graph
initial import
| 1 | |
| 2 | /** |
| 3 | * Fetches the new page and puts it inline. |
| 4 | * @param id - The element id whose contents will get replaced |
| 5 | * @param viewUrl - The URL for the new page |
| 6 | * @param page - The page number to request |
| 7 | */ |
| 8 | function fetchPage(id, viewUrl, page) { |
| 9 | $.get(viewUrl, {page: page}, function(data, status) { |
| 10 | $(id).html(data); |
| 11 | }); |
| 12 | return false; |
| 13 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |