electron/spec/fixtures/pages/onmouseup.html

10 lines
215 B
HTML
Raw Normal View History

2015-09-18 10:28:34 +00:00
<html>
<body>
<script type="text/javascript" charset="utf-8">
document.onmouseup = function(e) {
require('electron').ipcRenderer.sendToHost('mouseup', e.x, e.y, e.shiftKey, e.ctrlKey);
2015-09-18 10:28:34 +00:00
}
</script>
</body>
</html>