comparison ViewerPlugin/viewer.html @ 0:4a7a53257c7d

initial commit
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 22 Oct 2016 21:48:33 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4a7a53257c7d
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <title>Orthanc for Whole-Slide Imaging</title>
6
7 <link rel="stylesheet" href="ol.css" type="text/css">
8
9 <!-- This is the version of jQuery that is used by Orthanc Explorer -->
10 <script src="../../app/libs/jquery.min.js"></script>
11
12 <script src="ol.js"></script>
13
14 <style>
15 #map {
16 position: fixed;
17 top: 0;
18 left: 0;
19 width: 100%;
20 height: 100%;
21 border: 1px solid #ccc;
22 margin-bottom: 10px;
23 }
24 </style>
25
26 </head>
27 <body>
28 <div id="map" class="map"></div>
29
30 <script src="viewer.js"></script>
31 </body>
32 </html>