Skip to content

Instantly share code, notes, and snippets.

View zolotov's full-sized avatar

Alexander Zolotov zolotov

  • JetBrains
  • Amsterdam
View GitHub Profile
function highlight(stackTraceDiv) {
//replace filenames to link
var text = stackTraceDiv.html();
var highlighted = text.replace(/[0-9a-z_A-Z\-\.\/]+:\d+/g, '<a class="ide-link" href="/?message=$&">$&</a>');
stackTraceDiv.html(highlighted);
//bind links click event
$('a.ide-link').click(function(e) {
e.preventDefault();
var url = $(this).attr("href");