Skip to content

Commit 2fa7360

Browse files
committed
Hot fix and new version.
1 parent 6bb3c7b commit 2fa7360

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

dist/css/demo.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* =============================================================
3-
* dropify v0.1.0 - Override your input files with style.
3+
* dropify v0.1.1 - Override your input files with style.
44
* https://github.com/JeremyFagis/dropify
55
*
66
* (c) 2015 - Jeremy FAGIS <[email protected]> (http://fagis.fr)

dist/css/dropify.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* =============================================================
3-
* dropify v0.1.0 - Override your input files with style.
3+
* dropify v0.1.1 - Override your input files with style.
44
* https://github.com/JeremyFagis/dropify
55
*
66
* (c) 2015 - Jeremy FAGIS <[email protected]> (http://fagis.fr)

dist/css/dropify.min.css

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

dist/js/dropify.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* =============================================================
3-
* dropify v0.1.0 - Override your input files with style.
3+
* dropify v0.1.1 - Override your input files with style.
44
* https://github.com/JeremyFagis/dropify
55
*
66
* (c) 2015 - Jeremy FAGIS <[email protected]> (http://fagis.fr)
@@ -77,7 +77,7 @@ Dropify.prototype.createElements = function()
7777
var messageWrapper = $(this.settings.tpl.message).insertBefore(this.input);
7878
$(this.settings.tpl.error).appendTo(messageWrapper);
7979

80-
if (this.isTouchDevice() === false) {
80+
if (this.isTouchDevice() === true) {
8181
this.wrapper.addClass('touch-fallback');
8282
}
8383

dist/js/dropify.min.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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dropify",
33
"description": "Override your input files with style.",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"homepage": "https://github.com/JeremyFagis/dropify",
66
"author": "Jeremy FAGIS <[email protected]> (http://fagis.fr)",
77
"repository": {

src/js/dropify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Dropify.prototype.createElements = function()
5959
var messageWrapper = $(this.settings.tpl.message).insertBefore(this.input);
6060
$(this.settings.tpl.error).appendTo(messageWrapper);
6161

62-
if (this.isTouchDevice() === false) {
62+
if (this.isTouchDevice() === true) {
6363
this.wrapper.addClass('touch-fallback');
6464
}
6565

0 commit comments

Comments
 (0)