Browse Source

update readme

Robin Herbots 11 years ago
parent
commit
18620f14cd
1 changed files with 3 additions and 3 deletions
  1. 3 3
      README.md

+ 3 - 3
README.md

@@ -297,13 +297,13 @@ $(document).ready(function(){
 
 This behavior can be skipped by setting the skipRadixDance to true.
 
-#### align the numerics to the right
+#### align the input to the right
 
-By setting the rightAlignNumerics you can specify to right align a numeric inputmask.  Default is true.  
+By setting the rightAlign you can specify to right align an inputmask.  Default is true.  
 
 ```javascript
 $(document).ready(function(){
-    $(selector).inputmask('decimal', { rightAlignNumerics: false });  //disables the right alignment of the decimal input
+    $(selector).inputmask('decimal', { rightAlign: false });  //disables the right alignment of the decimal input
 });
 ```