Add rendering of exception include + CSS

This commit is contained in:
Josh Davis
2014-05-23 21:01:10 -05:00
parent c486056a9d
commit a2fd77e528
3 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -58,7 +58,8 @@ td i.icon{
}
td span.progress,
td span.international {
td span.exception,
td a.exception {
float: right;
}
+1 -1
View File
@@ -100,7 +100,7 @@ hash: SupportTwoFactorAuth
<img src="/img/{{ section.id }}/{{ website.img }}" class="icon" alt="{{ website.name }}">
{% endif %}
<a href="{{ website.url }}">{{ website.name }}</a>
{% include international.html website=website %}
{% include exception.html website=website %}
</td>
<td class="positive icon">
+2 -1
View File
@@ -1,4 +1,5 @@
(function (root, $) {
$('.menu .dropdown').dropdown();
$('span.popup.international').popup({on: 'click'});
$('span.popup.exception').popup();
$('a.popup.exception').popup();
}(window, jQuery));