in api-docs/0.6/lib/index.js [165:177]
$("> a.packhide", pack).click(function(event) {
var packhide = $(this)
var action = packhide.text();
if (action == "hide") {
$("~ ol", packhide).hide();
packhide.text("show");
}
else {
$("~ ol", packhide).show();
packhide.text("hide");
}
return false;
});