widgets/SecurePass.js
[Pman.Core] / widgets / SecurePass.js
index bab5c37..26755af 100644 (file)
@@ -292,28 +292,26 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
     // private
        ClientSideWeakPassword : function(pwd){
                return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
-       },
+       }/*,
         
-    // private
+    // private -- see TextFiedl... - not sure why we are duping the code?
     SafariOnKeyDown : function(event){
         
         var isSelectAll = false;
         if(this.el.dom.selectionEnd > 0){
             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
         }
-            event.preventDefault();
-            return;
-        
         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
             event.preventDefault();
             this.setValue('');
             return;
          };
         if(isSelectAll){ // backspace and delete key
+            
             event.preventDefault();
-            this.setValue('');
-            (function() { this.setValue(String.fromCharCode(charCode)); }).defer(50);
-            return;
+             this.setValue(String.fromCharCode(
+                    this.shiftKey ? event.getKey() : event.getKey().toLowerCase()
+            ));  
         };
-    }
+    } */
 })
\ No newline at end of file