ソースを参照

Edited jquery.inputmask.js via GitHub

Robin Herbots 14 年 前
コミット
7bc4841f65
1 ファイル変更3 行追加3 行削除
  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);
             });
         }