bloqhead of Big Sea
4/17/2014 - 4:48 PM

This is the Bones Theme Gravatar JS formatted for use in Coffeescript. Straight forward, no frills.

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