Skip to content

Commit

Permalink
generating jquery mask files v1.13.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Escobar committed Aug 7, 2015
1 parent 27c966d commit 7960d0d
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "jquery-mask-plugin",
"version": "1.13.3",
"version": "1.13.4",
"main": "dist/jquery.mask.js",
"ignore": [
"deploy.rb",
Expand Down
2 changes: 1 addition & 1 deletion component.json
@@ -1,7 +1,7 @@
{
"name": "jQuery-Mask-Plugin",
"description": "A jQuery Plugin to make masks on form fields and HTML elements.",
"version": "1.13.3",
"version": "1.13.4",
"keywords": ["javascript", "mask", "form"],
"scripts": [
"dist/jquery.mask.js"
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.mask.js
@@ -1,6 +1,6 @@
/**
* jquery.mask.js
* @version: v1.13.3
* @version: v1.13.4
* @author: Igor Escobar
*
* Created by Igor Escobar on 2012-03-10. Please report any bug at http://blog.igorescobar.com
Expand Down Expand Up @@ -360,7 +360,7 @@
// this is necessary, otherwise if the user submit the form
// and then press the "back" button, the autocomplete will erase
// the data. Works fine on IE9+, FF, Opera, Safari.
if ('oninput' in $('input')[0] === false && el.attr('autocomplete') === 'on') {
if ($('input').length && 'oninput' in $('input')[0] === false && el.attr('autocomplete') === 'on') {
el.attr('autocomplete', 'off');
}

Expand Down
26 changes: 13 additions & 13 deletions dist/jquery.mask.min.js

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

Binary file modified dist/jquery.mask.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "jquery-mask-plugin",
"version": "1.13.3",
"version": "1.13.4",
"description": "A jQuery Plugin to make masks on form fields and html elements.",
"author": "Igor Escobar <blog@igorescobar.com>",
"homepage": "http://igorescobar.github.io/jQuery-Mask-Plugin/",
Expand Down
2 changes: 1 addition & 1 deletion src/jquery.mask.js
@@ -1,6 +1,6 @@
/**
* jquery.mask.js
* @version: v1.13.3
* @version: v1.13.4
* @author: Igor Escobar
*
* Created by Igor Escobar on 2012-03-10. Please report any bug at http://blog.igorescobar.com
Expand Down

0 comments on commit 7960d0d

Please sign in to comment.