widgets/SecurePass.js
[Pman.Core] / widgets / SecurePass.js
index c64f878..fe8253e 100644 (file)
@@ -71,8 +71,12 @@ 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.SafariOnKeyDown, this);
+//            }
             Ext.form.SecurePass.superclass.initEvents.call(this);
-            this.el.on('keyup', this.checkStrength, this, {buffer:50});
+            this.el.on('keyup', this.checkStrength, this);
        },
 
        // private
@@ -130,7 +134,6 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
     
        // private
        checkStrength : function(){
-            Roo.log(this);
                var pwd = this.el.getValue();
                if (pwd == this._lastPwd) {
                        return;
@@ -288,5 +291,13 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
     // private
        ClientSideWeakPassword : function(pwd){
                return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
-       }
+       },
+        
+    // private
+        SafariOnKeyDown : function(event){
+            if((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1){ // backspace and delete key
+                event.preventDefault();
+                this.setValue('');
+            };
+        }
 })
\ No newline at end of file