Skip to content
This repository has been archived by the owner on Jul 25, 2022. It is now read-only.

Commit

Permalink
2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmynotjim committed Oct 30, 2014
1 parent a237659 commit 19f2105
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![build status](https://secure.travis-ci.org/jimmynotjim/scrollNav.png?branch=v2.3.0)](http://travis-ci.org/jimmynotjim/scrollNav.js)
[![build status](https://secure.travis-ci.org/jimmynotjim/scrollNav.png?branch=v2.3.1)](http://travis-ci.org/jimmynotjim/scrollNav.js)

# [jQuery scrollNav][1]

Expand Down Expand Up @@ -213,7 +213,7 @@ scrollNav is Copyright © 2012-2013 James Wilson, released under the [MIT li

## Version

Latest stable version is v2.3.0. Make sure to view [the changelog][15] before updating, v2 is a complete re-write of the plugin.
Latest stable version is v2.3.1. Make sure to view [the changelog][15] before updating, v2 is a complete re-write of the plugin.

## Testing

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scrollNav",
"version": "2.3.0",
"version": "2.3.1",
"author": {
"name": "James Wilson",
"email": "[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.scrollNav.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! scrollNav - v2.3.0 - 2014-10-09
/*! scrollNav - v2.3.1 - 2014-10-30
* http://scrollnav.com
* Copyright (c) 2014 James Wilson; Licensed MIT */
(function($) {
Expand Down Expand Up @@ -205,7 +205,7 @@
else { $nav.removeClass('fixed'); }

$.each(S.sections.data, function() {
if ( (this.top_offset > boundry_top && this.top_offset < boundry_bottom) || (this.bottom_offset > boundry_top && this.bottom_offset < boundry_bottom) || (this.top_offset < boundry_top && this.bottom_offset > boundry_bottom) ) {
if ( (this.top_offset >= boundry_top && this.top_offset <= boundry_bottom) || (this.bottom_offset > boundry_top && this.bottom_offset < boundry_bottom) || (this.top_offset < boundry_top && this.bottom_offset > boundry_bottom) ) {
sections_active.push(this);
}
});
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.scrollNav.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scrollNav",
"version": "2.3.0",
"version": "2.3.1",
"title": "scrollNav",
"author": {
"name": "James Wilson",
Expand Down
2 changes: 1 addition & 1 deletion scrollNav.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scrollNav",
"version": "2.3.0",
"version": "2.3.1",
"title": "scrollNav",
"description": "A jQuery plugin for building a scrolling side navigation menu",
"homepage": "http://scrollnav.com",
Expand Down

0 comments on commit 19f2105

Please sign in to comment.