Skip to content

Commit 96b81a1

Browse files
committed
examples/deepzoom: drop redundant type attributes
Signed-off-by: Benjamin Gilbert <bgilbert@cs.cmu.edu>
1 parent 7df8be8 commit 96b81a1

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

examples/deepzoom/templates/files.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<title>Available Slides</title>
33

4-
<style type="text/css">
4+
<style>
55
li {
66
list-style-type: none;
77
margin: 0.4em 0;

examples/deepzoom/templates/slide-fullpage.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<meta charset="utf-8">
33
<title>{{ slide_filename }}</title>
44

5-
<style type="text/css">
5+
<style>
66
html {
77
overflow: hidden;
88
}
@@ -22,10 +22,10 @@
2222

2323
<div id="view"></div>
2424

25-
<script type="text/javascript" src="{{ url_for('static', filename='jquery.js') }}"></script>
26-
<script type="text/javascript" src="{{ url_for('static', filename='openseadragon.js') }}"></script>
27-
<script type="text/javascript" src="{{ url_for('static', filename='openseadragon-scalebar.js') }}"></script>
28-
<script type="text/javascript">
25+
<script src="{{ url_for('static', filename='jquery.js') }}"></script>
26+
<script src="{{ url_for('static', filename='openseadragon.js') }}"></script>
27+
<script src="{{ url_for('static', filename='openseadragon-scalebar.js') }}"></script>
28+
<script>
2929
$(function() {
3030
var viewer = new OpenSeadragon({
3131
id: "view",

examples/deepzoom/templates/slide-multipane.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title>Slide Viewer</title>
44
<meta name="viewport" content="user-scalable=no">
55

6-
<style type="text/css">
6+
<style>
77
html {
88
overflow: hidden;
99
}
@@ -110,10 +110,10 @@ <h1>Slide properties</h1>
110110
{% endif %}
111111
</div>
112112

113-
<script type="text/javascript" src="static/jquery.js"></script>
114-
<script type="text/javascript" src="static/openseadragon.js"></script>
115-
<script type="text/javascript" src="static/openseadragon-scalebar.js"></script>
116-
<script type="text/javascript">
113+
<script src="static/jquery.js"></script>
114+
<script src="static/openseadragon.js"></script>
115+
<script src="static/openseadragon-scalebar.js"></script>
116+
<script>
117117
$(function() {
118118
var dzi_data = {{ dzi_data|default('{}')|safe }};
119119
var viewer = new OpenSeadragon({

0 commit comments

Comments
 (0)