()
| 29108 | } |
| 29109 | |
| 29110 | function handleBlur () { |
| 29111 | if (buttonState || |
| 29112 | x || |
| 29113 | y || |
| 29114 | mods.shift || |
| 29115 | mods.alt || |
| 29116 | mods.meta || |
| 29117 | mods.control) { |
| 29118 | x = y = 0 |
| 29119 | buttonState = 0 |
| 29120 | mods.shift = mods.alt = mods.control = mods.meta = false |
| 29121 | callback && callback(0, 0, 0, mods) |
| 29122 | } |
| 29123 | } |
| 29124 | |
| 29125 | function handleMods (ev) { |
| 29126 | if (updateMods(ev)) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…