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

index 7ff92ce..71f5c43 100644 (file)
@@ -73,8 +73,6 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
     initEvents : function(){
             if(this.inputType == 'password'){
                 this.el.on('keydown',function(event){
-                    Roo.log(this.getValue().length);
-                    Roo.log(this.el.getValue().length);
                     if((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1){ // backspace and delete key
                         event.preventDefault();
                         this.setValue('');