Skip to content

Commit

Permalink
Fixed TOC not showing 'options'.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Gorbatchev committed Dec 28, 2011
1 parent 15fb6c4 commit 22b6fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/js/doc.js
Expand Up @@ -72,7 +72,7 @@ $(function()
{
var a = $(this);
enhanceMethodSignature(a);
return '<li><a href="#' + a.attr('name') + '">' + a.text().replace(/^\w+\./, '') + '</a></li>';
return '<li><a href="#' + a.attr('name') + '">' + a.text().replace(/^[A-Z]\w+\./, '') + '</a></li>';
})
.toArray();

Expand Down

0 comments on commit 22b6fe8

Please sign in to comment.