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

Commit

Permalink
Make JSHint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Dec 15, 2014
1 parent 6391d4c commit efc1e11
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/.jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"boss": true,
"eqnull": true,
"browser": true,
"predef": ["jQuery", "TableSaw", "console"]
"predef": ["jQuery", "Tablesaw", "console"]
}
3 changes: 2 additions & 1 deletion src/tables.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
/*global Tablesaw:true */

/*
* tablesaw: A set of plugins for responsive tables
* Stack and Column Toggle tables
* Copyright (c) 2013 Filament Group, Inc.
* MIT License
*/

var Tablesaw;
if( typeof Tablesaw === "undefined" ) {
Tablesaw = {};
}
Expand Down
2 changes: 1 addition & 1 deletion src/tables.swipetoggle.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@
e.preventDefault();
}
})
.bind( "touchend.swipetoggle", function( e ){
.bind( "touchend.swipetoggle", function(){
if( x - originX < -1 * config.horizontalThreshold ){
advance( true );
}
Expand Down

0 comments on commit efc1e11

Please sign in to comment.