Revert "Trying to implement AJAX-based endless-page pagination"

This reverts commit 732af154ad.
This commit is contained in:
Christoph Haas 2013-08-10 14:46:37 +02:00
parent 732af154ad
commit c7c7640619
3 changed files with 8 additions and 21 deletions

View file

@ -1,16 +0,0 @@
// Load forms using AJAX
//$('#form-search').submit(load_screenshots);
alert("loaded");
$('#more-screenshots').click(load_more_screenshots)
function load_more_screenshots()
{
$('#more-screenshots').html('Loading…');
$('ul.thumbnails').append('foo');
}
$.get('ajax/test.html', function(data) {
$('.result').html(data);
alert('Load was performed.');
});