2011-01-07 21:33:18 +00:00
|
|
|
$(document).ready(function() {
|
2011-02-28 23:21:05 +00:00
|
|
|
$(":header", "#wiki-content").map(function(index) {
|
2011-01-07 21:33:18 +00:00
|
|
|
this.id = "wikititle_" + index;
|
2011-02-28 23:21:05 +00:00
|
|
|
$("<a href='#" + this.id + "'>" + jQuery.fn.text([this]) + "</a>")
|
|
|
|
.addClass("wiki-" + this.tagName.toLowerCase())
|
|
|
|
.appendTo('#wiki-toc-content');
|
|
|
|
});
|
2011-03-03 22:41:56 +00:00
|
|
|
if ($('#wiki-toc-content *').size() < 2)
|
2011-02-28 23:21:05 +00:00
|
|
|
$('#wiki-toc').hide();
|
2011-01-07 21:33:18 +00:00
|
|
|
});
|
|
|
|
|