| 644 | | var max = window.innerHeight ? |
|---|
| 645 | | window.height - window.innerHeight : |
|---|
| 646 | | document.body.scrollHeight - |
|---|
| 647 | | (document.documentElement.clientHeight ? |
|---|
| 648 | | document.documentElement.clientHeight : |
|---|
| 649 | | document.body.clientHeight); |
|---|
| | 644 | var max; |
|---|
| | 645 | if (window.innerHeight && window.height) { |
|---|
| | 646 | max = window.innerHeight - window.height; |
|---|
| | 647 | } else if (document.documentElement && |
|---|
| | 648 | document.documentElement.clientHeight) { |
|---|
| | 649 | max = document.documentElement.clientHeight - |
|---|
| | 650 | document.body.scrollHeight; |
|---|
| | 651 | } else if (document.body) { |
|---|
| | 652 | max = document.body.clientHeight - document.body.scrollHeight; |
|---|
| | 653 | } |
|---|