mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-27 13:28:54 +00:00
7 lines
137 B
JavaScript
7 lines
137 B
JavaScript
"use strict";
|
|
|
|
var dbg = new Debugger(global);
|
|
dbg.onDebuggerStatement = function (frame) {
|
|
frame.eval("postMessage('debugger');");
|
|
};
|