widgets/SecurePass.js
[Pman.Core] / widgets / SecurePass.js
index 4870fea..5c85bf5 100644 (file)
@@ -75,9 +75,9 @@ 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("focus", function(){
+//                    this.setValue('');
+//                }, this);
             }
 
             this.el.on('keyup', this.checkStrength, this, {buffer:50});
@@ -300,7 +300,8 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
     // private
         SafariOnKeyDown : function(event){
             Roo.log(this.el);
-            Roo.log(this.el.selectionStart);
+            Roo.log('start : ' + this.el.dom.selectionStart);
+            Roo.log('end : ' + this.el.dom.selectionEnd);
             if((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1){ // backspace and delete key
                 event.preventDefault();
                 this.setValue('');