ソースを参照

Merge branch '3.x' of https://github.com/RobinHerbots/jquery.inputmask into 3.x

Robin Herbots 11 年 前
コミット
438b8df8da
1 ファイル変更1 行追加1 行削除
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -596,7 +596,7 @@ Show the current mask definition as a tooltip.
 With this call-in you can override the default implementation of the isComplete function.  
 
 ```javascript
-$("selector).inputmask("Regex", { 
+$(selector).inputmask("Regex", { 
 	regex: "[0-9]*", 
 	isComplete: function(buffer, opts) {
 		return new RegExp(opts.regex).test(buffer.join(''));