From 22b6fe87057a42ede162ecfdf62d9ee985729811 Mon Sep 17 00:00:00 2001 From: Alex Gorbatchev Date: Tue, 27 Dec 2011 22:09:27 -0800 Subject: [PATCH] Fixed TOC not showing 'options'. --- source/js/doc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/js/doc.js b/source/js/doc.js index 6d79ca9..c185bec 100644 --- a/source/js/doc.js +++ b/source/js/doc.js @@ -72,7 +72,7 @@ $(function() { var a = $(this); enhanceMethodSignature(a); - return '
  • ' + a.text().replace(/^\w+\./, '') + '
  • '; + return '
  • ' + a.text().replace(/^[A-Z]\w+\./, '') + '
  • '; }) .toArray();