dirs (owner)

Revisions

gist: 113887 Download_button fork
public
Public Clone URL: git://gist.github.com/113887.git
Embed All Files: show embed
autofollow.js #
1
2
3
4
5
6
7
8
9
10
$(function() {
$('.vcard').each(function() {
$this = $(this);
$this.find('.form_follow').each(function() {
if ($(this).css('display') == 'block') {
$(this).submit();
}
});
});
});