This is the Bones Theme Gravatar JS formatted for use in Coffeescript. Straight forward, no frills.
if ( $(window).width() >= 768 ) {
$(".comment img[data-gravatar]").each( function() {
$(this).attr( "src", $(this).attr("data-gravatar") );
});
}
if $(window).width() >= 768
$(".comment img[data-gravatar]").each ->
$(@).attr "src", $(@).attr("data-gravatar")
return