Skip to content

Commit

Permalink
fixed issue with travis build jshint fail
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-fielding committed Jan 31, 2014
1 parent 4e90f92 commit 0b82bad
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 9 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ Documentation can be found at http://www.simplestatemanager.com

##Release Log

###2.2.1 - January 31, 2014
* Fixed build issue

###2.2.0 - January 29, 2014
* Added ssm.isActive to allow us to test if a state is active

Expand Down Expand Up @@ -58,10 +61,10 @@ Documentation can be found at http://www.simplestatemanager.com
* Replaced Debounce with timeout
* New Site

###1.0.1 - Jun 24, 2013
###1.0.1 - June 24, 2013
* Added Debounce to SSM (Thanks Kevin)

###1.0.0 - Jun 22, 2013
###1.0.0 - June 22, 2013
* Initial release

## Planned Features
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": "SimpleStateManager",
"version": "2.2.0",
"version": "2.2.1",
"main": "src/ssm.js",
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion dist/ssm.min.js

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

11 changes: 8 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<div class="container">
<img src="docs/images/ssm-logo.png" class="logo">

<h1>Simple State Manager 2.2.0</h1>
<h1>Simple State Manager 2.2.1</h1>

<p class="lead">Simple State Manager (SSM for short) is a javascript state manager for responsive websites. It is built to be light weight, has no dependencies (except javascript of course) and aims to be really easy to simply drop into your project ready to use.</p>
<a class="btn btn-large btn-primary" href="https://github.com/jonathan-fielding/SimpleStateManager/archive/master.zip">Download</a>
Expand Down Expand Up @@ -323,6 +323,11 @@ <h2>Browser Support</h2>
<h2>Release Log</h2>
<p>SimpleStateManager follows <a href="http://semver.org/">Semantic Versioning 2.0.0</a></p>

<h3>2.2.1 - January 31, 2014</h3>
<ul>
<li>Fixed build issue</li>
</ul>

<h3>2.2.0 - January 29, 2014</h3>
<ul>
<li>Added ssm.isActive to allow us to test if a state is active</li>
Expand Down Expand Up @@ -380,11 +385,11 @@ <h3>1.0.2 - August 6, 2013</h3>
<li>Performance tweaks</li>
<li>New Site</li>
</ul>
<h3>1.0.1 - Jun 24, 2013</h3>
<h3>1.0.1 - June 24, 2013</h3>
<ul>
<li>Added Debounce</li>
</ul>
<h3>1.0.0 - Jun 22, 2013</h3>
<h3>1.0.0 - June 22, 2013</h3>
<ul>
<li>Initial release</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "SimpleStateManager",
"description": "SimpleStateManager ==================",
"version": "2.2.0",
"version": "2.2.1",
"main": "src/ssm.js",
"scripts": {
"test": "grunt travis --verbose"
Expand Down
2 changes: 1 addition & 1 deletion src/ssm.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
if(currentStates[i].id === name){
return true;
}
};
}

return false;
};
Expand Down

0 comments on commit 0b82bad

Please sign in to comment.