summaryrefslogtreecommitdiff
path: root/inc/parser/xhtml.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-11-10 21:15:41 +0100
committerAndreas Gohr <andi@splitbrain.org>2006-11-10 21:15:41 +0100
commit6b379cbf0a8e0d4f0e2dcb639808b944ac8afa66 (patch)
tree1c23a94a4f5a00c4291b4b0ed8e00b5e5f793774 /inc/parser/xhtml.php
parentda96af357215605d855d6ce8ef8fb50ffb679641 (diff)
downloadrpg-6b379cbf0a8e0d4f0e2dcb639808b944ac8afa66.tar.gz
rpg-6b379cbf0a8e0d4f0e2dcb639808b944ac8afa66.tar.bz2
DOMlib removed
The DOMlib javascript library was removed. It was only used for footnote tooltips and access key fixup. Removing the library creates a much smaller JavaScript footprint. The size of the compacted non-edit Javascript output was reduces from 56110 bytes down to 29296 bytes. The footnote tooltip was completely rewritten and tested in FireFox 2.0, IE 6 and Opera 9.02. Please test other browsers as well. The acces key fixup might beahve different now on Mac platforms. darcs-hash:20061110201541-7ad00-0dffad095193bc7e7c505796a99b0a0a010a6b0d.gz
Diffstat (limited to 'inc/parser/xhtml.php')
-rw-r--r--inc/parser/xhtml.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 4e8927679..4680ea123 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -287,8 +287,8 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
$this->footnotes[count($this->footnotes)] = "@@FNT".($i);
}
- // output the footnote reference and link, incl. onmouseover for insitu footnote popup
- $this->doc .= '<a href="#fn__'.$id.'" name="fnt__'.$id.'" id="fnt__'.$id.'" class="fn_top" onmouseover="fnt(\''.$id.'\', this, event);">'.$id.')</a>';
+ // output the footnote reference and link
+ $this->doc .= '<a href="#fn__'.$id.'" name="fnt__'.$id.'" id="fnt__'.$id.'" class="fn_top">'.$id.')</a>';
}
function listu_open() {