2010-04-11 09:25:26 +02:00
|
|
|
(function($) {
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
|
|
|
|
|
|
|
/** -----------------------------------------------
|
|
|
|
* TABLE OF CONTENTS
|
|
|
|
*
|
|
|
|
* Transform a #table-of-contents div to a nested list
|
|
|
|
*/
|
|
|
|
|
|
|
|
if($("#table-of-contents").length > 0) {
|
|
|
|
var toc = '<div class="box"><ul id="toc"><h4>In this document:</h4>';
|
|
|
|
|
|
|
|
$('#left-column h1, #left-column h2, #left-column h3, #left-column h4').each(function(i) {
|
|
|
|
var current = $(this);
|
|
|
|
current.attr('id', 'title' + i);
|
|
|
|
toc += '<li class="' + current.attr("tagName").toLowerCase() + '"><a id="link' + i + '" href="'+ window.location.href +'#title' + i + '" title="' + current.html() + '">' + current.html() + '</a></li>';
|
|
|
|
});
|
|
|
|
|
|
|
|
toc += '</ul></div>';
|
2010-03-04 05:39:02 +01:00
|
|
|
|
2010-04-11 09:25:26 +02:00
|
|
|
$('#table-of-contents').prepend(toc);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})(jQuery);
|