Skip to content

Commit be3afc2

Browse files
committed
Build v0.1.7
1 parent 2b61aed commit be3afc2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

dist/slideout.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/slideout.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function Slideout(options) {
5959
this._moved = false;
6060
this._opened = false;
6161
this._preventOpen = false;
62-
this._touch = options.touch == undefined ? true : options.touch && true;
62+
this._touch = options.touch === undefined ? true : options.touch && true;
6363

6464
// Sets panel
6565
this.panel = options.panel;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"repository": "git@github.com:mango/slideout.git",
44
"description": "A touch slideout navigation menu for your mobile web apps.",
55
"author": "Guille Paz <guille87paz@gmail.com>",
6-
"version": "0.1.6",
6+
"version": "0.1.7",
77
"scripts": {
88
"build": "node browserify.js",
99
"test": "npm run build && _mocha",

0 commit comments

Comments
 (0)