electron/spec/fixtures/pages/onkeyup.html

10 lines
204 B
HTML
Raw Normal View History

2015-09-18 10:28:34 +00:00
<html>
<body>
<script type="text/javascript" charset="utf-8">
document.onkeyup = function(e) {
2015-11-10 07:29:43 +00:00
require('ipc-renderer').sendToHost('keyup', e.keyCode, e.shiftKey, e.ctrlKey);
2015-09-18 10:28:34 +00:00
}
</script>
</body>
</html>