From 4af061f2fe2df527a8f7ceb93ddf10e2a50c138c Mon Sep 17 00:00:00 2001
From: Fabien Benetou
>>
"; + myDiv.style.cssText += ' line-height:1px;'; + myDiv.innerHTML += ">>
(date:"+PIMpages_date+")
"; @@ -84,6 +85,38 @@ if (PIMpages != "fail") myFoldedDiv.innerHTML += "<<
"; myFoldedDiv.style.cssText = boxcss; myFoldedDiv.style.cssText += "visibility:hidden;"; + myFoldedDiv.style.cssText += "line-height:10px;"; document.body.appendChild(myFoldedDiv); } + +function shortcuts (e){ + switch(e.charCode) + { + case "u".charCodeAt(0) : document.getElementById('GM_PIM_Window').style.visibility='visible';document.getElementById('GM_PIM_Folded_Window').style.visibility='hidden'; break; + case "f".charCodeAt(0) : document.getElementById('GM_PIM_Window').style.visibility='hidden';document.getElementById('GM_PIM_Folded_Window').style.visibility='visible'; break; + } + +}; + +function registerShortcuts() { + window.addEventListener("keypress", shortcuts, true); +}; + +function unregisterShortcuts() { + window.removeEventListener("keypress", shortcuts, true); +}; + +registerShortcuts(); + +$x('//input | //textarea | //select').forEach(registerListener); + +function registerListener(node) { + node.addEventListener("mouseover", function() { + unregisterShortcuts(); + scroll_pause(); }, true); + node.addEventListener("mouseout", function() { + scroll_start (); + registerShortcuts(); + }, true); +}