Skip to content

Commit 0a67f67

Browse files
authored
Merge pull request #1092 from jdufresne/example-bump-version
Bump version of third party libraries in example
2 parents 05ffccf + a7527cd commit 0a67f67

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

example/templates/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<h1>Index of Tests</h1>
1010
{% cache 10 index_cache %}
1111
<ul>
12-
<li><a href="/jquery/">jQuery 2.0.3</a></li>
13-
<li><a href="/mootools/">MooTools 1.4.5</a></li>
14-
<li><a href="/prototype/">Prototype 1.7.1.0</a></li>
12+
<li><a href="/jquery/">jQuery 3.3.1</a></li>
13+
<li><a href="/mootools/">MooTools 1.6.0</a></li>
14+
<li><a href="/prototype/">Prototype 1.7.3.0</a></li>
1515
</ul>
1616
<p><a href="/admin/">Django Admin</a></p>
1717
{% endcache %}

example/templates/jquery/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<style>
77
.hide {display:none;}
88
</style>
9-
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
9+
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
1010
<script type="text/javascript">
1111
$(document).ready(function() {
1212
$('p.hide').show();

example/templates/mootools/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<style>
77
.hide {display:none;}
88
</style>
9-
<script src="//ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools-yui-compressed.js"></script>
9+
<script src="//ajax.googleapis.com/ajax/libs/mootools/1.6.0/mootools.min.js"></script>
1010
<script type="text/javascript">
1111
window.addEvent('domready', function() {
1212
$$('p.hide').setStyle('display', 'block');

example/templates/prototype/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<style>
77
.hide {display:none;}
88
</style>
9-
<script src="//ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js"></script>
9+
<script src="//ajax.googleapis.com/ajax/libs/prototype/1.7.3.0/prototype.js"></script>
1010
<script type="text/javascript">
1111
document.observe('dom:loaded', function() {
1212
$('showme').removeClassName('hide');

0 commit comments

Comments
 (0)