From 04586299b178840ddb64268e925de6d8aadf16cb Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Tue, 27 Sep 2011 00:57:45 -0500 Subject: fixed github line numbering issue, fixed a few bugs in code block styling --- .themes/classic/source/javascripts/octopress.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.themes/classic/source/javascripts') diff --git a/.themes/classic/source/javascripts/octopress.js b/.themes/classic/source/javascripts/octopress.js index c369625e..f6259f63 100644 --- a/.themes/classic/source/javascripts/octopress.js +++ b/.themes/classic/source/javascripts/octopress.js @@ -58,7 +58,7 @@ function addCodeLineNumbers() { lineNumbers = '
',
         tableMiddle = '
', tableEnd = '', - count = $('span.line', code).length; + count = $('.line', code).length; for (var i=1;i<=count; i++) { lineNumbers += ''+i+'\n'; } -- cgit v1.2.1