diff options
Diffstat (limited to '.themes/classic/source/javascripts')
-rw-r--r-- | .themes/classic/source/javascripts/octopress.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.themes/classic/source/javascripts/octopress.js b/.themes/classic/source/javascripts/octopress.js index d4b38b24..c3f59156 100644 --- a/.themes/classic/source/javascripts/octopress.js +++ b/.themes/classic/source/javascripts/octopress.js @@ -28,7 +28,7 @@ function addSidebarToggler() { } var sections = $('aside.sidebar > section'); if (sections.length > 1) { - sections.each(function(section, index){ + sections.each(function(index, section){ if ((sections.length >= 3) && index % 3 === 0) { $(section).addClass("first"); } |