-
-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not let users zoom or pinch in the document.
- Loading branch information
Showing
2 changed files
with
22 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Weylus</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<script src="lib.js"></script> | ||
<script> | ||
let password = "{{password}}"; | ||
let websocket_pointer_port = "{{websocket_pointer_port}}"; | ||
let websocket_video_port = "{{websocket_video_port}}"; | ||
run(password, websocket_pointer_port, websocket_video_port); | ||
</script> | ||
</head> | ||
|
||
<head> | ||
<title>Weylus</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<script src="lib.js"></script> | ||
<script> | ||
let password = "{{password}}"; | ||
let websocket_pointer_port = "{{websocket_pointer_port}}"; | ||
let websocket_video_port = "{{websocket_video_port}}"; | ||
run(password, websocket_pointer_port, websocket_video_port); | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<canvas id="canvas"> | ||
Your browser does not support canvas element. | ||
</canvas> | ||
</body> | ||
<body> | ||
<canvas id="canvas"> | ||
Your browser does not support canvas element. | ||
</canvas> | ||
</body> | ||
|
||
</html> |