summaryrefslogtreecommitdiff
path: root/doc/build/static/init.js
blob: 1876d470e60f45f5e2aa100688375a4b294cd80e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

function initSQLPopups() {
    $('div.popup_sql').hide();
    $('a.sql_link').click(function() {
        $(this).nextAll('div.popup_sql:first').toggle();
        return false;
    });
}

/*function initFloatyThings() {
	$("dl.function, dl.class, dl.method, dl.attr, dl.data").each(function(idx, elem) {
		$(elem).prepend("<div class='floatything'>" + $(elem).contents("dt").attr('id')+ "</div>");
	});
}*/

$(document).ready(function() {
    initSQLPopups();
    /*initFloatyThings();*/
});