resources/script/common2.js
를 열어보시면,
976번 라인쯤에,, switch 구문이 있습니다.
이를 주석처리하거나 삭제하시면 될 것 같습니다.
switch(event.keyCode) {
case 81: //Q
window.location = blogURL + "/owner";
break;
case 82: //R
if (isReaderEnabled)
window.location = blogURL + "/owner/network/reader";
break;
case 84: //T
if (isReaderEnabled)
window.location = blogURL + "/owner/network/reader/?forceRefresh";
break;
case 65: //A
case 72: //H
case 80: //P
if(prevURL)
window.location = prevURL;
break;
case 83: //S
case 76: //L
case 78: //N
if(nextURL)
window.location = nextURL;
break;
case 74: //J
window.scrollBy(0, 100);
break;
case 75: //K
window.scrollBy(0, -100);
break;
case 90: //Z
window.location = "#recentEntries";
break;
case 88: //X
window.location = "#recentComments";
break;
case 67: //C
window.location = "#recentTrackbacks";
break;
}