浏览代码

update readme #1655

Robin Herbots 7 年之前
父节点
当前提交
cd98c10bc0
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4 2
      README.md

+ 4 - 2
README.md

@@ -451,11 +451,13 @@ Inputmask.extendAliases({
 });
 ```
 
-But if the property is defined within an alias you need to set it for the alias definition.
+But if the property is defined within an alias you need to set it for the alias definition.  
+This is also for default plugin options.  If the alias definitions extends on default options, you can only override it at alias level.
 
 ```javascript
 Inputmask.extendAliases({
-  'numeric': {
+  'numeric': 
+    autoUnmask: true,
     allowPlus: false,
     allowMinus: false
   }