Created
October 11, 2009 08:03
-
-
Save mooz/207539 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
key.setEditKey("M-l", | |
function (ev, arg) { | |
let elem = ev.originalTarget; | |
elem.style.imeMode = { | |
active : "inactive", | |
inactive : "active" | |
}[elem.style.imeMode] || "active"; | |
elem.blur(); | |
elem.focus(); | |
}, "Toggle IME", true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment