summaryrefslogtreecommitdiffstats
path: root/1.1/sangria-contextual/apidocs/script.js
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2014-09-16 10:21:08 -0400
committerTavian Barnes <tavianator@tavianator.com>2014-09-16 10:21:19 -0400
commit95bb12d092948a0e52f5fb2edd8e3c781efc2392 (patch)
tree7c110d137e40414d3cb07917614c5b3be4aac8d8 /1.1/sangria-contextual/apidocs/script.js
parent9b2a4b8646f2baea660add10c18b191358bc60bf (diff)
downloadsangria-95bb12d092948a0e52f5fb2edd8e3c781efc2392.tar.xz
Add version 1.1 site.
Diffstat (limited to '1.1/sangria-contextual/apidocs/script.js')
-rw-r--r--1.1/sangria-contextual/apidocs/script.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/1.1/sangria-contextual/apidocs/script.js b/1.1/sangria-contextual/apidocs/script.js
new file mode 100644
index 0000000..b346356
--- /dev/null
+++ b/1.1/sangria-contextual/apidocs/script.js
@@ -0,0 +1,30 @@
+function show(type)
+{
+ count = 0;
+ for (var key in methods) {
+ var row = document.getElementById(key);
+ if ((methods[key] & type) != 0) {
+ row.style.display = '';
+ row.className = (count++ % 2) ? rowColor : altColor;
+ }
+ else
+ row.style.display = 'none';
+ }
+ updateTabs(type);
+}
+
+function updateTabs(type)
+{
+ for (var value in tabs) {
+ var sNode = document.getElementById(tabs[value][0]);
+ var spanNode = sNode.firstChild;
+ if (value == type) {
+ sNode.className = activeTableTab;
+ spanNode.innerHTML = tabs[value][1];
+ }
+ else {
+ sNode.className = tableTab;
+ spanNode.innerHTML = "<a href=\"javascript:show("+ value + ");\">" + tabs[value][1] + "</a>";
+ }
+ }
+}