widgets/SecurePass.js
[Pman.Core] / widgets / SecurePass.js
index e40dba3..26755af 100644 (file)
@@ -292,17 +292,26 @@ 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){
-            var isSelectAll = false;
-            if(this.el.dom.selectionEnd > 0){
-                isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
-            }
-            if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1) || isSelectAll){ // backspace and delete key
-                event.preventDefault();
-                this.setValue('');
-            };
+    // 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;
         }
+        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(String.fromCharCode(
+                    this.shiftKey ? event.getKey() : event.getKey().toLowerCase()
+            ));  
+        };
+    } */
 })
\ No newline at end of file