Skip to content

Commit 4713bf2

Browse files
committed
remove log statements
1 parent 8dd3def commit 4713bf2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

js/jquery.mobile.forms.textinput.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,6 @@ $.widget( "mobile.textinput", $.mobile.widget, {
100100
var scrollHeight = input[ 0 ].scrollHeight,
101101
clientHeight = input[ 0 ].clientHeight;
102102

103-
console.log( scrollHeight );
104-
console.log( clientHeight );
105-
106103
if ( clientHeight < scrollHeight ) {
107104
input.css({
108105
height: (scrollHeight + extraLineHeight)
@@ -115,7 +112,7 @@ $.widget( "mobile.textinput", $.mobile.widget, {
115112
clearTimeout( keyupTimeout );
116113
keyupTimeout = setTimeout( keyup, keyupTimeoutBuffer );
117114
});
118-
115+
119116
// Issue 509: the browser is not giving scrollHeight properly until after the document
120117
// is ready.
121118
if ($.trim(input.text())) {

0 commit comments

Comments
 (0)