2019-02-07 03:34:39 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
</head>
|
|
|
|
<body>
|
2019-02-11 01:55:29 +05:30
|
|
|
<p id="syncstatus"></p>
|
|
|
|
<div><button id="stopsync">stop syncing</button></div>
|
|
|
|
<script>
|
|
|
|
const label = document.getElementById("syncstatus");
|
|
|
|
const button = document.getElementById("stopsync");
|
|
|
|
import("./src/main.js").then(main => {
|
|
|
|
main.default(label, button);
|
|
|
|
});
|
|
|
|
</script>
|
2019-02-07 03:34:39 +05:30
|
|
|
</body>
|
|
|
|
</html>
|