forked from mongodb/bsonspec.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbsonspec.js
45 lines (43 loc) · 1.99 KB
/
bsonspec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
function show_home() {
jQuery(".button a").removeClass("selected");
jQuery(".info").hide("fast");
jQuery(".intro").show("fast");
}
function show_section(section) {
jQuery(".button a").removeClass("selected");
jQuery(".intro").hide("fast");
jQuery(".info").hide("fast");
jQuery("#" + section).show("fast");
jQuery("a." + section).addClass("selected");
}
jQuery(function() {
jQuery(".nojs").hide();
jQuery(".info").hide();
jQuery.address.change(function(event) {
switch (event.path) {
case "/":
show_home();
break;
case "/specification":
show_section("spec");
break;
case "/implementation":
show_section("lib");
break;
case "/faq":
show_section("faq");
break;
default:
jQuery.address.value("/");
}
});
jQuery(".tt").tooltip({delay: 0, fade: 100, track: true, showBody: " - "});
jQuery(".hl").mouseover(function() {
var cls = "." + jQuery(this).attr("class").substring(3, 4);
jQuery(cls).addClass("highlight");
});
jQuery(".hl").mouseout(function() {
var cls = "." + jQuery(this).attr("class").substring(3, 4);
jQuery(cls).removeClass("highlight");
});
});