jitsi-meet-electron/app/index.html
Saúl Ibarra Corretgé 1d3cfbb569 Improve dragging experience
The entire page is draggable, except:

- buttons
- any input type
- the filmstrip
- the chat panel
2018-06-28 14:56:55 -05:00

20 lines
308 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body, html {
overflow: hidden;
}
body {
-webkit-app-region: drag
}
button, input {
-webkit-app-region: no-drag
}
</style>
</head>
<body>
<div id="app"></div>
</body>
</html>