widgets/SecurePass.js
authorEdward <edward@roojs.com>
Tue, 23 Apr 2013 04:59:44 +0000 (12:59 +0800)
committerEdward <edward@roojs.com>
Tue, 23 Apr 2013 04:59:44 +0000 (12:59 +0800)
widgets/SecurePass.js

index bbc5964..8a27247 100644 (file)
@@ -72,9 +72,9 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
     // private
     initEvents : function(){
             
-            if(this.inputType == 'password'){
+            if(this.el.is('input[type=password]')){
                 this.el.on('keydown',function(event){
-                    Roo.log(this.el.is('input[type=password]'));
+                    Roo.log(Roo.isSafari);
                     if((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1){ // backspace and delete key
                         event.preventDefault();
                         this.setValue('');