Skip to content

Instantly share code, notes, and snippets.

View amphro's full-sized avatar

Thomas Dvornik amphro

View GitHub Profile
@amphro
amphro / gist:7238988
Created October 30, 2013 19:46
A bookmarklet that opens the Apex Log body in a new tab when selecting a log from the Developer Console. Not formatted, as it is a bookmarklet.
var l=Ext.getCmp('traceGrid'); var s=l.selModel.selected; if (s && s.length===1) { var id=s.items[0].data.Id; SfdcDevConsole.ToolingAPI.sobject('ApexLog', {id:id, body:true, success:function(r){var w=window.open('', id);w.document.write(r.replace(/\n/g,'<br/>'));w.focus();}})}