diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ViewerPlugin/viewer.html	Sat Oct 22 21:48:33 2016 +0200
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+
+<html>
+  <head>
+    <title>Orthanc for Whole-Slide Imaging</title>
+
+    <link rel="stylesheet" href="ol.css" type="text/css">
+
+    <!-- This is the version of jQuery that is used by Orthanc Explorer -->
+    <script src="../../app/libs/jquery.min.js"></script>
+
+    <script src="ol.js"></script>
+
+    <style>
+      #map {
+      position: fixed;
+      top: 0;
+      left: 0;
+      width: 100%;
+      height: 100%;
+      border: 1px solid #ccc;
+      margin-bottom: 10px;
+      }
+    </style>
+
+  </head>
+  <body>
+    <div id="map" class="map"></div>
+
+    <script src="viewer.js"></script>
+  </body>
+</html>