mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 10:28:22 +01:00
17 lines
383 B
JavaScript
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");
|
|
});
|
|
});
|
|
});
|