browse.js 265 B

12345678
  1. $(document).ready(function()
  2. {
  3. $('.show-comment').click(function()
  4. {
  5. var comment = JSON.stringify($(this).data('comment'), null, 4);
  6. $('#comment-modal .modal-body').html('<code style="white-space: pre;">' + comment + '</code>');
  7. });
  8. });