summaryrefslogtreecommitdiffstats
path: root/moon-abe/pbc-0.5.14/doc/find_selflink.js
diff options
context:
space:
mode:
authorWuKong <rebirthmonkey@gmail.com>2015-09-04 09:25:34 +0200
committerWuKong <rebirthmonkey@gmail.com>2015-09-04 09:25:34 +0200
commit3baeb11a8fbcfcdbc31976d421f17b85503b3ecd (patch)
tree04891d88c1127148f1b390b5a24414e85b270aee /moon-abe/pbc-0.5.14/doc/find_selflink.js
parent67c5b73910f5fc437429c356978081b252a59480 (diff)
init attribute-based encryption
Change-Id: Iba1a3d722110abf747a0fba366f3ebc911d25b25
Diffstat (limited to 'moon-abe/pbc-0.5.14/doc/find_selflink.js')
-rw-r--r--moon-abe/pbc-0.5.14/doc/find_selflink.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/moon-abe/pbc-0.5.14/doc/find_selflink.js b/moon-abe/pbc-0.5.14/doc/find_selflink.js
new file mode 100644
index 00000000..db436db7
--- /dev/null
+++ b/moon-abe/pbc-0.5.14/doc/find_selflink.js
@@ -0,0 +1,37 @@
+// From my own website(!)
+//TODO: only do this for links in the table of contents menu
+
+function find_selflink() {
+ var a = document.links;
+ var i = 0;
+ while (i < a.length) {
+ if (a[i].href == document.URL) {
+ var c;
+ var j;
+ var s_new = document.createElement("span");
+ s_new.className = "currentlink";
+ c = a[i].childNodes;
+ for (j=0; j<c.length; j++) {
+ s_new.appendChild(c[j]);
+ }
+ a[i].parentNode.replaceChild(s_new, a[i]);
+ } else {
+ i++;
+ }
+
+ /*
+ if (a[i].href == document.URL) {
+ a[i].className = "currentlink";
+ if (0) {
+ var s_new = document.createElement("span");
+ s_new.className = "currentlink";
+ s_new.appendChild(a[i]);
+ a[i].parentNode.replaceChild(s_new, a[i]);
+ }
+ }
+ i++;
+ */
+ }
+}
+
+find_selflink();