Colorbox not working on native WordPress gallery when gallery is loaded thru AJAX

The problem is that the gallery doesn’t exist when colorbox binds itself to the gallery links. I was able to fix this problem by using the ajaxComplete() event, like so:

$(document).ajaxComplete(function(){
    $('.gallery-icon a').colorbox();
});

Thanks @Milo for pointing me in the right direction.