mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
389 B
HTML
19 lines
389 B
HTML
|
<html>
|
||
|
<body>
|
||
|
<script>
|
||
|
var im = navigator.mozInputMethod;
|
||
|
if (im) {
|
||
|
// Automatically append location hash to current input field.
|
||
|
im.oninputcontextchange = function() {
|
||
|
var ctx = im.inputcontext;
|
||
|
if (ctx) {
|
||
|
intervalId = setTimeout(function() {
|
||
|
ctx.replaceSurroundingText(location.hash);
|
||
|
}, 0);
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|