Skip to content

Commit

Permalink
Fix improper HTML in base template
Browse files Browse the repository at this point in the history
base.html includes a self closing div.  This is not valid HTML.

Change-Id: Iac2a26c05d5e0631c7294cd831e384fc223d955a
Closes-bug: #1359969
  • Loading branch information
Doug Fish committed Aug 21, 2014
1 parent 285ae20 commit f873284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion horizon/templates/base.html
Expand Up @@ -37,6 +37,6 @@
{% block js %}
{% include "horizon/_scripts.html" %}
{% endblock %}
<div id="modal_wrapper" />
<div id="modal_wrapper"></div>
</body>
</html>

0 comments on commit f873284

Please sign in to comment.