Browse Source

Edited jquery.inputmask.js via GitHub

Robin Herbots 14 years ago
parent
commit
7bc4841f65
1 changed files with 3 additions and 3 deletions
  1. 3 3
      jquery.inputmask.js

+ 3 - 3
jquery.inputmask.js

@@ -104,7 +104,7 @@ This plugin is based on the masked input plugin written by Josh Bush (digitalbus
                 var tests = getTestingChain();
 
                 return this.each(function() {
-                    mask($(this));
+                    mask(this);
                 });
             } else if (fn == 'unmaskedvalue') {
                 var tests = this.data('tests');
@@ -125,7 +125,7 @@ This plugin is based on the masked input plugin written by Josh Bush (digitalbus
                 var tests = getTestingChain();
 
                 return this.each(function() {
-                    mask($(this));
+                    mask(this);
                 });
             }
         } if (typeof fn == "object") {
@@ -136,7 +136,7 @@ This plugin is based on the masked input plugin written by Josh Bush (digitalbus
             var tests = getTestingChain();
 
             return this.each(function() {
-                mask($(this));
+                mask(this);
             });
         }