Skip to content

Commit ec16dbb

Browse files
committed
Update version of jquery being used.
1 parent 3fa374a commit ec16dbb

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

_includes/common.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- Optional theme -->
55
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
66

7-
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
7+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
88

99
<!-- Latest compiled and minified JavaScript -->
1010
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>

examples.html

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,20 @@ <h3 class="panel-title">Examples</h3>
3737

3838
<div class="panel-group" id="accordion">
3939
{% for post in posts %}
40-
<div class="panel panel-default">
41-
<div class="panel-heading">
42-
<h4 class="panel-title">
43-
<a data-toggle="collapse" data-parent="#accordion" href="#{{ post.title | replace: ' ', '_' }}">
44-
{{ post.title }}
45-
</a>
46-
</h4>
47-
</div>
48-
<div id="{{ post.title | replace: ' ', '_' }}" class="panel-collapse collapse">
49-
<div class="panel-body">
50-
{{ post.content}}
40+
<div class="panel panel-default">
41+
<div class="panel-heading">
42+
<h4 class="panel-title">
43+
<a data-toggle="collapse" data-parent="#accordion" href="#{{ post.title | replace: ' ', '_' }}">
44+
{{ post.title }}
45+
</a>
46+
</h4>
47+
</div>
48+
<div id="{{ post.title | replace: ' ', '_' }}" class="panel-collapse collapse in">
49+
<div class="panel-body">
50+
{{ post.content}}
51+
</div>
5152
</div>
5253
</div>
53-
</div>
5454
{% endfor %}
5555
</div>
5656

0 commit comments

Comments
 (0)