in api-docs/0.6/lib/template.js [27:35]
$("#ancestors > ol > li.showall").click(function() {
var filtered =
$("#ancestors > ol > li.out").filter(function() {
var name = $(this).attr("name");
return !(name == "scala.Any" || name == "scala.AnyRef");
});
filtered.removeClass("out").addClass("in");
filter();
});