Ensure that promoted link trackers are fetched in bare page loads.

This commit is contained in:
Max Goodman
2013-05-24 14:42:20 -07:00
parent b073d7cef7
commit 7132efa249

View File

@@ -70,7 +70,10 @@ r.ui.refreshListing = function() {
url: url.attr('base') + url.attr('path'),
data: params
}).done(function(resp) {
$('body > .content').html(resp)
$('body > .content')
.html(resp)
.find('.promotedlink.promoted:visible')
.trigger('onshow')
})
}