(ev)
| 285 | } |
| 286 | |
| 287 | function wk(ev) { |
| 288 | if (!isEnabled) return; |
| 289 | if (ev.keyCode == 27) { |
| 290 | dissableColorPickerFromHere(); |
| 291 | } else if (ev.keyCode == 82 || ev.keyCode == 74) {//r or j refresh |
| 292 | ssf(); |
| 293 | } else if (ev.keyCode == 13) { |
| 294 | picked(); |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | function mmf(ev) { |
| 299 | if (!isEnabled) return; |
nothing calls this directly
no test coverage detected