widgets/SecurePass.js
[Pman.Core] / widgets / SecurePass.js
index 3fd9513..0a7d401 100644 (file)
@@ -71,10 +71,11 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
 
     // private
     initEvents : function(){
-            
             if(this.el.is('input[type=password]') && Roo.isSafari){
-                this.el.on('keydown',
-                },this);
+                this.el.on('keydown', this.SafariOnKeyDown, this);
+                this.el.on("focus", function(){
+                    this.setValue('');
+                }, this);
             }
             Ext.form.SecurePass.superclass.initEvents.call(this);
             this.el.on('keyup', this.checkStrength, this, {buffer:50});
@@ -296,6 +297,7 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
         
     // private
         SafariOnKeyDown : function(event){
+            Roo.log(this.getRawValue());
             if((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1){ // backspace and delete key
                 event.preventDefault();
                 this.setValue('');