Skip to content

Commit a3507d1

Browse files
committed
resetActivePageHeight: ensure height param is of type number
1 parent d9c8799 commit a3507d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/jquery.mobile.navigation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ define( [
293293
aPageBorderB = parseFloat( aPage.css( "border-bottom-width" ) );
294294

295295
height = ( typeof height === "number" )? height : getScreenHeight();
296-
console.log(height);
296+
297297
aPage.css( "min-height", height - aPagePadT - aPagePadB - aPageBorderT - aPageBorderB );
298298
};
299299

0 commit comments

Comments
 (0)