aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/javascripts/tweets.js
blob: 55972bfd821b8a17567f8b58569e83d4485dac20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//= require jquery.autopager-1.0.0-mod
$(function() {
  $.autopager({
    autoLoad: true,
    content: ".items",
    start: function(current, next) {
      $(".loading").show();
    },
    load: function(current, next) {
      $(".loading").hide();
    }
  });
  $("a[rel=next]").hide().click(function() {
    $.autopager("load");
    return false;
  });
});