Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Hot fix and new version.
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyFagis committed Jun 17, 2015
1 parent 6bb3c7b commit 2fa7360
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/css/demo.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* =============================================================
* dropify v0.1.0 - Override your input files with style.
* dropify v0.1.1 - Override your input files with style.
* https://github.com/JeremyFagis/dropify
*
* (c) 2015 - Jeremy FAGIS <jeremy@fagis.fr> (http://fagis.fr)
Expand Down
2 changes: 1 addition & 1 deletion dist/css/dropify.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* =============================================================
* dropify v0.1.0 - Override your input files with style.
* dropify v0.1.1 - Override your input files with style.
* https://github.com/JeremyFagis/dropify
*
* (c) 2015 - Jeremy FAGIS <jeremy@fagis.fr> (http://fagis.fr)
Expand Down
2 changes: 1 addition & 1 deletion dist/css/dropify.min.css

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

4 changes: 2 additions & 2 deletions dist/js/dropify.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* =============================================================
* dropify v0.1.0 - Override your input files with style.
* dropify v0.1.1 - Override your input files with style.
* https://github.com/JeremyFagis/dropify
*
* (c) 2015 - Jeremy FAGIS <jeremy@fagis.fr> (http://fagis.fr)
Expand Down Expand Up @@ -77,7 +77,7 @@ Dropify.prototype.createElements = function()
var messageWrapper = $(this.settings.tpl.message).insertBefore(this.input);
$(this.settings.tpl.error).appendTo(messageWrapper);

if (this.isTouchDevice() === false) {
if (this.isTouchDevice() === true) {
this.wrapper.addClass('touch-fallback');
}

Expand Down
4 changes: 2 additions & 2 deletions dist/js/dropify.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 package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dropify",
"description": "Override your input files with style.",
"version": "0.1.0",
"version": "0.1.1",
"homepage": "https://github.com/JeremyFagis/dropify",
"author": "Jeremy FAGIS <jeremy@fagis.fr> (http://fagis.fr)",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/dropify.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Dropify.prototype.createElements = function()
var messageWrapper = $(this.settings.tpl.message).insertBefore(this.input);
$(this.settings.tpl.error).appendTo(messageWrapper);

if (this.isTouchDevice() === false) {
if (this.isTouchDevice() === true) {
this.wrapper.addClass('touch-fallback');
}

Expand Down

0 comments on commit 2fa7360

Please sign in to comment.