mayth/parasol

View on GitHub
app/assets/javascripts/posts.js.coffee

Summary

Maintainability
Test Coverage
$(document).on('page:change', () =>
  result = /^\/posts\/([0-9]+)$/.exec(location.pathname)
  if result
    $.getJSON("/posts/#{result[1]}.json", (data) =>
      $('.post-body').html(marked(data['body']))
      $('.post-body pre code').each((i, e) => hljs.highlightBlock(e))
    )
)