mirror of
https://github.com/masscollabs/masscollabs_logo.git
synced 2024-11-15 16:56:07 -05:00
42 lines
1.6 KiB
HTML
42 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">
|
|
<title>Markdown preview</title>
|
|
<link rel="stylesheet" type="text/css" href="https://thomasf.github.io/solarized-css/solarized-dark.min.css">
|
|
<script src="http://code.jquery.com/jquery-1.12.4.min.js"></script>
|
|
|
|
<script>
|
|
(function($, undefined) {
|
|
var socket = new WebSocket("ws://localhost:7379");
|
|
socket.onopen = function() {
|
|
console.log("Connection established.");
|
|
socket.send("MDPM-Register-UUID: ce84b6c1-7b1d-430a-b43d-b914356f93b9");
|
|
};
|
|
socket.onclose = function(event) {
|
|
if (event.wasClean) {
|
|
console.log('Connection closed gracefully.');
|
|
} else {
|
|
console.log('Connection terminated.');
|
|
}
|
|
console.log('Code: ' + event.code + ' reason: ' + event.reason);
|
|
};
|
|
socket.onmessage = function(event) {
|
|
$("#markdown-body").html($(event.data).find("#content").html()).trigger('mdContentChange');
|
|
var scroll = $(document).height() * ($(event.data).find("#position-percentage").html() / 100);
|
|
$("html, body").animate({ scrollTop: scroll }, 600);
|
|
};
|
|
socket.onerror = function(error) {
|
|
console.log("Error: " + error.message);
|
|
};
|
|
})(jQuery);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<article id="markdown-body" class="markdown-body">
|
|
<p>Markdown preview</p>
|
|
</article>
|
|
</body>
|
|
</html>
|