Follow

Disabling the 5 "?" trigger to launch the debug log during training...

Avatar

There a couple of ways to disable the 5 "?" trigger to launch the debug log while taking training.

1. Comment out the line "window.parent.Control.CheckForDebugCommand(intKeyCode);" in boh *top.aspx and *left.aspx in your ui pages. These pages are located in the remoteuifiles directory.

2. Or remove this entire section in the javascript:

window.document.onkeypress = CheckKeyPress;

function CheckKeyPress(e){

var intKeyCode = 0;
if (window.event) {
e = window.event;
intKeyCode = e.keyCode;
}
else {
intKeyCode = e.which;
}

window.parent.Control.CheckForDebugCommand(intKeyCode);
}

Thank you,

Joe

Was this article helpful?
0 out of 0 found this helpful
Have more questions? Submit a request
Powered by Zendesk