Browse Source

Close tag on js examples.

pull/2717/head
Hsiaoming Yang 7 years ago
parent
commit
b7f6ff4f0b
No known key found for this signature in database
GPG Key ID: 7E55E3E0118B2B4C
  1. 5
      examples/javascript/js_example/templates/base.html

5
examples/javascript/js_example/templates/base.html

@ -12,13 +12,16 @@
#result { font-weight: bold; }
</style>
<ul>
<li><span>Type:</span>
<li><span>Type:</span></li>
<li class="{% if js == 'plain' %}active{% endif %}">
<a href="{{ url_for('index', js='plain') }}">Plain</a>
</li>
<li class="{% if js == 'fetch' %}active{% endif %}">
<a href="{{ url_for('index', js='fetch') }}">Fetch</a>
</li>
<li class="{% if js == 'jquery' %}active{% endif %}">
<a href="{{ url_for('index', js='jquery') }}">jQuery</a>
</li>
</ul>
<hr>
<p>{% block intro %}{% endblock %}</p>

Loading…
Cancel
Save