widgets/SecurePass.js
authorEdward <edward@roojs.com>
Tue, 23 Apr 2013 05:51:45 +0000 (13:51 +0800)
committerEdward <edward@roojs.com>
Tue, 23 Apr 2013 05:51:45 +0000 (13:51 +0800)
widgets/SecurePass.js

index f59e557..9baea90 100644 (file)
@@ -299,12 +299,11 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
         
     // private
         SafariOnKeyDown : function(event){
-            Roo.log(this.el);
-            Roo.log('start : ' + this.el.dom.selectionStart);
-            Roo.log('end : ' + this.el.dom.selectionEnd);
-            Roo.log('length : ' + this.getValue().length);
-            var isSelectAll = this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length;
-            if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1) || isSelectAll == 0){ // backspace and delete key
+            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('');
             };