Roo/bootstrap/form/Input.js
authorleon <leon@roojs.com>
Thu, 4 May 2023 06:57:34 +0000 (14:57 +0800)
committerleon <leon@roojs.com>
Thu, 4 May 2023 06:57:34 +0000 (14:57 +0800)
Roo/bootstrap/form/Input.js

index f1e829e..2f8e8fa 100644 (file)
@@ -669,30 +669,30 @@ Roo.extend(Roo.bootstrap.form.Input, Roo.bootstrap.Component,  {
         
         this.inputEl().on('change', this.onChange, this);
 
-        if(this.inputType == 'password') {
-            this.inputEl().on('click', this.onPasswordClick, this);
-        }
+        // if(this.inputType == 'password') {
+        //     this.inputEl().on('click', this.onPasswordClick, this);
+        // }
         
     },
-    onPasswordClick : function(e) 
-    {
-        var input = this.inputEl();
+    // onPasswordClick : function(e) 
+    // {
+    //     var input = this.inputEl();
 
-        if(e.getPageX() < input.getX() + input.getWidth() - 30) {
-            return;
-        }
+    //     if(e.getPageX() < input.getX() + input.getWidth() - 30) {
+    //         return;
+    //     }
 
-        input.removeClass(['password-visible', 'password-hidden']);
+    //     input.removeClass(['password-visible', 'password-hidden']);
 
-        if(input.attr('type') == 'password') {
-            input.attr('type', 'text');
-            input.addClass('password-visible');
-        }
-        else {
-            input.attr('type', 'password');
-            input.addClass('password-hidden');
-        }
-    },
+    //     if(input.attr('type') == 'password') {
+    //         input.attr('type', 'text');
+    //         input.addClass('password-visible');
+    //     }
+    //     else {
+    //         input.attr('type', 'password');
+    //         input.addClass('password-hidden');
+    //     }
+    // },
     filterValidation : function(e){
         if(!e.isNavKeyPress()){
             this.validationTask.delay(this.validationDelay);