mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
remove log statements
This commit is contained in:
parent
8dd3def54b
commit
4713bf26d5
1 changed files with 1 additions and 4 deletions
|
|
@ -100,9 +100,6 @@ $.widget( "mobile.textinput", $.mobile.widget, {
|
|||
var scrollHeight = input[ 0 ].scrollHeight,
|
||||
clientHeight = input[ 0 ].clientHeight;
|
||||
|
||||
console.log( scrollHeight );
|
||||
console.log( clientHeight );
|
||||
|
||||
if ( clientHeight < scrollHeight ) {
|
||||
input.css({
|
||||
height: (scrollHeight + extraLineHeight)
|
||||
|
|
@ -115,7 +112,7 @@ $.widget( "mobile.textinput", $.mobile.widget, {
|
|||
clearTimeout( keyupTimeout );
|
||||
keyupTimeout = setTimeout( keyup, keyupTimeoutBuffer );
|
||||
});
|
||||
|
||||
|
||||
// Issue 509: the browser is not giving scrollHeight properly until after the document
|
||||
// is ready.
|
||||
if ($.trim(input.text())) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue