sass-site/source/assets/js/components/impl-status.js
Natalie Weizenbaum 79097d0fe1 Bundle all JS into a single file
Because we weren't doing this yet, we weren't actually loading the
redirect.js JS code at all.

This also gets rid of some unused JS.
2019-05-08 13:01:20 -07:00

17 lines
383 B
JavaScript

$(function() {
$(".impl-status").each(function() {
var statusBar = $(this);
var expandLink = $(this).find("a");
if (expandLink == null) return;
var details = $(this).next();
if (!details.hasClass("sl-c-callout")) return;
details.hide();
expandLink.click(function() {
details.toggle();
expandLink.toggleClass("expanded");
});
});
});