Browse Source

Update jquery.inputmask.js

Robin Herbots 12 years ago
parent
commit
4432c04e2a
1 changed files with 0 additions and 3 deletions
  1. 0 3
      js/jquery.inputmask.js

+ 0 - 3
js/jquery.inputmask.js

@@ -1184,15 +1184,12 @@
 
             function mobileInputEvent(e) {
                 var input = this, $input = $(input);
-				input.focus();
 
                 //backspace in chrome32 only fires input event - detect & treat
                 var caretPos = caret(input),
                     currentValue = input._valueGet();
                     
-                console.log(currentValue);
                 currentValue = currentValue.replace(new RegExp("(" + escapeRegex(getActiveBufferTemplate().join('')) + ")*"), "");
-                console.log(currentValue);    
                 //correct caretposition for chrome
                 if (caretPos.begin > currentValue.length) {
                     caret(input, currentValue.length);