Skip to content

Commit

Permalink
Build v0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
pazguille committed Apr 21, 2015
1 parent 2b61aed commit be3afc2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/slideout.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/slideout.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 index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function Slideout(options) {
this._moved = false;
this._opened = false;
this._preventOpen = false;
this._touch = options.touch == undefined ? true : options.touch && true;
this._touch = options.touch === undefined ? true : options.touch && true;

// Sets panel
this.panel = options.panel;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"repository": "git@github.com:mango/slideout.git",
"description": "A touch slideout navigation menu for your mobile web apps.",
"author": "Guille Paz <guille87paz@gmail.com>",
"version": "0.1.6",
"version": "0.1.7",
"scripts": {
"build": "node browserify.js",
"test": "npm run build && _mocha",
Expand Down

0 comments on commit be3afc2

Please sign in to comment.