Indent all HTML files with two spaces

This commit is contained in:
Tom Payne
2012-10-01 14:29:50 +02:00
parent d894275cf5
commit c6a9044bee
2 changed files with 95 additions and 95 deletions
+67 -67
View File
@@ -1,70 +1,70 @@
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="../css/ol.css" type="text/css"> <link rel="stylesheet" href="../css/ol.css" type="text/css">
<link rel="stylesheet" href="style.css" type="text/css"> <link rel="stylesheet" href="style.css" type="text/css">
<style type="text/css"> <style type="text/css">
.map { .map {
width: 400px; width: 400px;
height: 400px; height: 400px;
border: thin solid #cccccc; border: thin solid #cccccc;
margin: 1em; margin: 1em;
} }
</style> </style>
<title>ol3 side-by-side demo</title> <title>ol3 side-by-side demo</title>
</head> </head>
<body> <body>
<h1>ol3 side-by-side demo</h1> <h1>ol3 side-by-side demo</h1>
<table> <table>
<tr> <tr>
<th>DOM</th> <th>DOM</th>
<th>WebGL</th> <th>WebGL</th>
</tr> </tr>
<tr> <tr>
<td><div id="domMap" class="map"></div></td> <td><div id="domMap" class="map"></div></td>
<td><div id="webglMap" class="map"></div></td> <td><div id="webglMap" class="map"></div></td>
</tr> </tr>
<tr> <tr>
<td><div id="domMousePosition" class="mouseposition"></div></td> <td><div id="domMousePosition" class="mouseposition"></div></td>
<td><div id="webglMousePosition" class="mouseposition"></div></td> <td><div id="webglMousePosition" class="mouseposition"></div></td>
</tr> </tr>
</table> </table>
<table> <table>
<tr> <tr>
<td>Pan:</td> <td>Pan:</td>
<td>drag, arrow keys</td> <td>drag, arrow keys</td>
</tr> </tr>
<tr> <tr>
<td>Zoom:</td> <td>Zoom:</td>
<td>double-click, <code>Shift</code>+double-click, mouse wheel, <code>+</code>/<code>-</code> keys; <code>Shift</code>+drag</td> <td>double-click, <code>Shift</code>+double-click, mouse wheel, <code>+</code>/<code>-</code> keys; <code>Shift</code>+drag</td>
</tr> </tr>
<tr> <tr>
<td>Rotate:</td> <td>Rotate:</td>
<td><code>Alt</code>+drag, <code>r</code> to reset</td> <td><code>Alt</code>+drag, <code>r</code> to reset</td>
</tr> </tr>
<tr> <tr>
<td>Brightness/contrast:</td> <td>Brightness/contrast:</td>
<td><code>b</code>/<code>B</code>/<code>c</code>/<code>C</code> keys (WebGL only)</td> <td><code>b</code>/<code>B</code>/<code>c</code>/<code>C</code> keys (WebGL only)</td>
</tr> </tr>
<tr> <tr>
<td>Hue/saturation:</td> <td>Hue/saturation:</td>
<td><code>h</code>/<code>H</code>/<code>s</code>/<code>S</code> keys (WebGL only)</td> <td><code>h</code>/<code>H</code>/<code>s</code>/<code>S</code> keys (WebGL only)</td>
</tr> </tr>
<tr> <tr>
<td>Opacity:</td> <td>Opacity:</td>
<td><code>o</code>/<code>O</code> keys</td> <td><code>o</code>/<code>O</code> keys</td>
</tr> </tr>
<tr> <tr>
<td>Visibility:</td> <td>Visibility:</td>
<td><code>v</code>/<code>V</code> keys</td> <td><code>v</code>/<code>V</code> keys</td>
</tr> </tr>
<tr> <tr>
<td>Reset</td> <td>Reset</td>
<td><code>0</code> key</td> <td><code>0</code> key</td>
</tr> </tr>
</table> </table>
<p><b>Notes:</b> The two maps share the same center, resolution, rotation and layers.</p> <p><b>Notes:</b> The two maps share the same center, resolution, rotation and layers.</p>
<script src="loader.js?id=side-by-side" type="text/javascript"></script> <script src="loader.js?id=side-by-side" type="text/javascript"></script>
</body> </body>
</html> </html>
+28 -28
View File
@@ -1,31 +1,31 @@
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="../css/ol.css" type="text/css"> <link rel="stylesheet" href="../css/ol.css" type="text/css">
<link rel="stylesheet" href="style.css" type="text/css"> <link rel="stylesheet" href="style.css" type="text/css">
<style type="text/css"> <style type="text/css">
.map { .map {
width: 400px; width: 400px;
height: 400px; height: 400px;
border: thin solid #cccccc; border: thin solid #cccccc;
margin: 1em; margin: 1em;
} }
</style> </style>
<title>ol3 two-layers demo</title> <title>ol3 two-layers demo</title>
</head> </head>
<body> <body>
<h1>ol3 two-layers demo</h1> <h1>ol3 two-layers demo</h1>
<table> <table>
<tr> <tr>
<th>DOM</th> <th>DOM</th>
<th>WebGL</th> <th>WebGL</th>
</tr> </tr>
<tr> <tr>
<td><div id="domMap" class="map"></div></td> <td><div id="domMap" class="map"></div></td>
<td><div id="webglMap" class="map"></div></td> <td><div id="webglMap" class="map"></div></td>
</tr> </tr>
</table> </table>
<script src="loader.js?id=two-layers" type="text/javascript"></script> <script src="loader.js?id=two-layers" type="text/javascript"></script>
</body> </body>
</html> </html>