Skip to content

Commit

Permalink
Add rendering of exception include + CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavis committed May 24, 2014
1 parent c486056 commit a2fd77e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ td i.icon{
}

td span.progress,
td span.international {
td span.exception,
td a.exception {
float: right;
}

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h2>Two Factor Auth (2FA)</h2>
<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">
Expand Down
3 changes: 2 additions & 1 deletion js/app.js
Original file line number Diff line number Diff line change
@@ -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));

0 comments on commit a2fd77e

Please sign in to comment.