make .attachment.more ajax work with ajax-loaded content, i.e. infiniteScroll

This commit is contained in:
Hannes Mannerheim 2014-10-20 16:14:37 +02:00
parent c2fa3ca846
commit 5ca625e470
1 changed files with 9 additions and 11 deletions

View File

@ -856,18 +856,16 @@ var SN = { // StatusNet
return;
}
var attachment_more = notice.find('.attachment.more');
if (attachment_more.length > 0) {
$(attachment_more[0]).click(function () {
var m = $(this);
m.addClass(SN.C.S.Processing);
$.get(m.attr('href'), {ajax: 1}, function (data) {
m.parent('.e-content').html($(data).find('#attachment_view .e-content').html());
});
$(document).on('click','.attachment.more',function () {
var m = $(this);
m.addClass(SN.C.S.Processing);
$.get(m.attr('href'), {ajax: 1}, function (data) {
m.parent('.e-content').html($(data).find('#attachment_view .e-content').html());
});
return false;
});
return false;
}).attr('title', SN.msg('showmore_tooltip'));
}
},
/**