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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
# highlight.rb $Revision: 1.2 $
#
# Highlighting the element jumped from other pages.
#
if @mode == 'day' then
add_footer_proc do
<<-SCRIPT
<script type="text/javascript"><!--
var highlightElem = null;
var saveClass = null;
function highlightElement(name) {
if (highlightElem) {
highlightElem.className = saveClass;
highlightElem = null;
}
highlightElem = getHighlightElement(name);
if (!highlightElem) return;
saveClass = highlightElem.className;
highlightElem.className = "highlight";
}
function getHighlightElement(name) {
for (var i=0; i<document.anchors.length; ++i) {
var anchor = document.anchors[i];
if (anchor.name == name) {
var elem;
if (anchor.parentElement) {
elem = anchor.parentElement;
} else if (anchor.parentNode) {
elem = anchor.parentNode;
}
return elem;
}
}
return null;
}
if (document.location.hash) {
highlightElement(document.location.hash.substr(1));
}
hereURL = document.location.href.split(/\#/)[0];
for (var i=0; i<document.links.length; ++i) {
if (hereURL == document.links[i].href.split(/\#/)[0]) {
document.links[i].onclick = handleLinkClick;
}
}
function handleLinkClick() {
highlightElement(this.hash.substr(1));
}
// --></script>
SCRIPT
end
end
# Local Variables:
# mode: ruby
# indent-tabs-mode: t
# tab-width: 3
# ruby-indent-level: 3
# End:
# vi: ts=3 sw=3
|