mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 06:37:48 +02:00
22 lines
535 B
HTML
22 lines
535 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Story using promises, version 2</title>
|
|
<script src="story2.js"></script>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="network-fake">
|
|
<label><input type="checkbox"> Fake network delay</label>
|
|
</div>
|
|
<div class="story"></div>
|
|
<svg class="spinner" viewBox="0 0 100 100" width="20" height="20">
|
|
<circle cx="50" cy="50" r="42" transform="rotate(-90,50,50)" />
|
|
</svg>
|
|
<script>
|
|
rtl.run();
|
|
</script>
|
|
</body>
|
|
</html>
|