in hive/scaladocs/lib/template.js [4:236]
$(document).ready(function(){
// Escapes special characters and returns a valid jQuery selector
function escapeJquery(str){
return str.replace(/([;&,\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g, '\\$1');
}
// highlight and jump to selected member
if (window.location.hash) {
var temp = window.location.hash.replace('#', '');
var elem = '#'+escapeJquery(temp);
window.scrollTo(0, 0);
$(elem).parent().effect("highlight", {color: "#FFCC85"}, 3000);
$('html,body').animate({scrollTop:$(elem).parent().offset().top}, 1000);
}
var isHiddenClass = function (name) {
return name == 'scala.Any' ||
name == 'scala.AnyRef';
};
var isHidden = function (elem) {
return $(elem).attr("data-hidden") == 'true';
};
$("#linearization li:gt(0)").filter(function(){
return isHiddenClass($(this).attr("name"));
}).removeClass("in").addClass("out");
$("#implicits li").filter(function(){
return isHidden(this);
}).removeClass("in").addClass("out");
// Pre-filter members
filter();
// Member filter box
var input = $("#textfilter input");
input.bind("keyup", function(event) {
switch ( event.keyCode ) {
case 27: // escape key
input.val("");
filter(true);
break;
case 38: // up
input.val("");
filter(false);
window.scrollTo(0, $("body").offset().top);
input.focus();
break;
case 33: //page up
input.val("");
filter(false);
break;
case 34: //page down
input.val("");
filter(false);
break;
default:
window.scrollTo(0, $("#mbrsel").offset().top);
filter(true);
break;
}
});
input.focus(function(event) {
input.select();
});
$("#textfilter > .post").click(function() {
$("#textfilter input").attr("value", "");
filter();
});
$(document).keydown(function(event) {
if (event.keyCode == 9) { // tab
$("#index-input", window.parent.document).focus();
input.attr("value", "");
return false;
}
});
$("#linearization li").click(function(){
if ($(this).hasClass("in")) {
$(this).removeClass("in");
$(this).addClass("out");
}
else if ($(this).hasClass("out")) {
$(this).removeClass("out");
$(this).addClass("in");
};
filter();
});
$("#implicits li").click(function(){
if ($(this).hasClass("in")) {
$(this).removeClass("in");
$(this).addClass("out");
}
else if ($(this).hasClass("out")) {
$(this).removeClass("out");
$(this).addClass("in");
};
filter();
});
$("#mbrsel > div[id=ancestors] > ol > li.hideall").click(function() {
$("#linearization li.in").removeClass("in").addClass("out");
$("#linearization li:first").removeClass("out").addClass("in");
$("#implicits li.in").removeClass("in").addClass("out");
if ($(this).hasClass("out") && $("#mbrsel > div[id=ancestors] > ol > li.showall").hasClass("in")) {
$(this).removeClass("out").addClass("in");
$("#mbrsel > div[id=ancestors] > ol > li.showall").removeClass("in").addClass("out");
}
filter();
})
$("#mbrsel > div[id=ancestors] > ol > li.showall").click(function() {
var filteredLinearization =
$("#linearization li.out").filter(function() {
return ! isHiddenClass($(this).attr("name"));
});
filteredLinearization.removeClass("out").addClass("in");
var filteredImplicits =
$("#implicits li.out").filter(function() {
return ! isHidden(this);
});
filteredImplicits.removeClass("out").addClass("in");
if ($(this).hasClass("out") && $("#mbrsel > div[id=ancestors] > ol > li.hideall").hasClass("in")) {
$(this).removeClass("out").addClass("in");
$("#mbrsel > div[id=ancestors] > ol > li.hideall").removeClass("in").addClass("out");
}
filter();
});
$("#visbl > ol > li.public").click(function() {
if ($(this).hasClass("out")) {
$(this).removeClass("out").addClass("in");
$("#visbl > ol > li.all").removeClass("in").addClass("out");
filter();
};
})
$("#visbl > ol > li.all").click(function() {
if ($(this).hasClass("out")) {
$(this).removeClass("out").addClass("in");
$("#visbl > ol > li.public").removeClass("in").addClass("out");
filter();
};
});
$("#order > ol > li.alpha").click(function() {
if ($(this).hasClass("out")) {
orderAlpha();
};
})
$("#order > ol > li.inherit").click(function() {
if ($(this).hasClass("out")) {
orderInherit();
};
});
$("#order > ol > li.group").click(function() {
if ($(this).hasClass("out")) {
orderGroup();
};
});
$("#groupedMembers").hide();
initInherit();
// Create tooltips
$(".extype").add(".defval").tooltip({
tip: "#tooltip",
position:"top center",
predelay: 500,
onBeforeShow: function(ev) {
$(this.getTip()).text(this.getTrigger().attr("name"));
}
});
/* Add toggle arrows */
//var docAllSigs = $("#template li").has(".fullcomment").find(".signature");
// trying to speed things up a little bit
var docAllSigs = $("#template li[fullComment=yes] .signature");
function commentToggleFct(signature){
var parent = signature.parent();
var shortComment = $(".shortcomment", parent);
var fullComment = $(".fullcomment", parent);
var vis = $(":visible", fullComment);
signature.toggleClass("closed").toggleClass("opened");
if (vis.length > 0) {
shortComment.slideDown(100);
fullComment.slideUp(100);
}
else {
shortComment.slideUp(100);
fullComment.slideDown(100);
}
};
docAllSigs.addClass("closed");
docAllSigs.click(function() {
commentToggleFct($(this));
});
/* Linear super types and known subclasses */
function toggleShowContentFct(e){
e.toggleClass("open");
var content = $(".hiddenContent", e.parent().get(0));
if (content.is(':visible')) {
content.slideUp(100);
}
else {
content.slideDown(100);
}
};
$(".toggle:not(.diagram-link)").click(function() {
toggleShowContentFct($(this));
});
// Set parent window title
windowTitle();
if ($("#order > ol > li.group").length == 1) { orderGroup(); };
});