mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 01:13:08 +09:00
25 lines
453 B
HTML
25 lines
453 B
HTML
|
|
<html>
|
||
|
|
<body>
|
||
|
|
<script>
|
||
|
|
var im = navigator.mozInputMethod;
|
||
|
|
if (im) {
|
||
|
|
im.oninputcontextchange = onIcc;
|
||
|
|
|
||
|
|
if (im.inputcontext) {
|
||
|
|
onIcc();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function onIcc() {
|
||
|
|
var ctx = im.inputcontext;
|
||
|
|
if (ctx) {
|
||
|
|
ctx.replaceSurroundingText(location.hash).then(function() {
|
||
|
|
/* Happy flow */
|
||
|
|
}, function(err) {
|
||
|
|
dump('ReplaceSurroundingText failed ' + err + '\n');
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|