widgets/SecurePass.js
[Pman.Core] / widgets / SecurePass.js
index 4f44d6d..243e2c5 100644 (file)
@@ -71,11 +71,15 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
 
     // private
     initEvents : function(){
-            
+            Ext.form.SecurePass.superclass.initEvents.call(this);
+        
             if(this.el.is('input[type=password]') && Roo.isSafari){
                 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});
        },
 
@@ -295,6 +299,8 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
         
     // private
         SafariOnKeyDown : function(event){
+            Roo.log($this.el);
+            Roo.log(this.el.selectionStart);
             if((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1){ // backspace and delete key
                 event.preventDefault();
                 this.setValue('');