3984206b69
Change-Id: Id23ab66fadb714316cdf73e93501b0cea870880d Reviewed-on: https://gerrit.libreoffice.org/55850 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
32 lines
731 B
HTML
32 lines
731 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta charset="utf-8">
|
|
<style type="text/css">
|
|
.body {
|
|
background: #FFFFFF;
|
|
}
|
|
.spinner
|
|
{
|
|
position: absolute;
|
|
text-align: center;
|
|
margin: auto;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="spinner">
|
|
<canvas id="spinner" class="leaflet-progress-spinner-canvas"></canvas>
|
|
</div>
|
|
<script>
|
|
var spinnerInterval = window.parent.L.LOUtil.startSpinner(document.getElementById('spinner'), 1.5);
|
|
</script>
|
|
</body>
|
|
</html>
|