widgets/SecurePass.js
authorEdward <edward@roojs.com>
Tue, 23 Apr 2013 04:49:32 +0000 (12:49 +0800)
committerEdward <edward@roojs.com>
Tue, 23 Apr 2013 04:49:32 +0000 (12:49 +0800)
widgets/SecurePass.js

index 3c76cb4..222f803 100644 (file)
@@ -71,17 +71,17 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
 
     // private
     initEvents : function(){
-            if(this.inputType == 'password'){
-                this.el.on('keydown',function(event){
-                    Roo.log(this.getValue().length);
-                    if((event.getKey() == 8 || event.getKey() == 46)){ // backspace and delete key
-                        event.preventDefault();
-                        this.setValue('');
-                    };
-                },this);
-            }
+//            if(this.inputType == 'password'){
+//                this.el.on('keydown',function(event){
+//                    Roo.log(this.getValue().length);
+//                    if((event.getKey() == 8 || event.getKey() == 46)){ // backspace and delete key
+//                        event.preventDefault();
+//                        this.setValue('');
+//                    };
+//                },this);
+//            }
             Ext.form.SecurePass.superclass.initEvents.call(this);
-            this.el.on('keyup', this.checkStrength, this, {buffer:50});
+            this.el.on('keyup', this.checkStrength, this);
        },
 
        // private