widgets/SecurePass.js
[Pman.Core] / widgets / SecurePass.js
index 9baea90..85d2864 100644 (file)
@@ -75,9 +75,6 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
         
             if(this.el.is('input[type=password]') && Roo.isSafari){
                 this.el.on('keydown', this.SafariOnKeyDown, this);
-//                this.el.on("focus", function(){
-//                    this.setValue('');
-//                }, this);
             }
 
             this.el.on('keyup', this.checkStrength, this, {buffer:50});
@@ -305,7 +302,7 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
             }
             if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1) || isSelectAll){ // backspace and delete key
                 event.preventDefault();
-                this.setValue('');
+                //this.setValue('');
             };
         }
 })
\ No newline at end of file