FIX: use prop("tagName") instead of attr("tagName")

This commit is contained in:
martimiz 2012-11-08 16:29:22 +01:00 committed by Will Rossiter
parent 027b63ea0b
commit 2968e2947e
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
$('#content-column h1[id], #content-column h2[id], #content-column h3[id], #content-column h4[id]').each(function(i) {
var current = $(this);
var tagName = current.attr("tagName");
var tagName = current.prop("tagName");
if(typeof tagName == "String") tagName = tagName.toLowerCase();
toc += '<li class="' + tagName + '"><a id="link' + i + '" href="'+ pageURL +'#' + $(this).attr('id') + '" title="' + current.html() + '">' + current.html() + '</a></li>';