(el)
| 394 | } |
| 395 | |
| 396 | function isVisible(el) { |
| 397 | var elemTop = el.getBoundingClientRect().top; |
| 398 | var elemBottom = el.getBoundingClientRect().bottom; |
| 399 | |
| 400 | var isVisible = (elemTop >= 0) && (elemBottom <= window.innerHeight); |
| 401 | return isVisible; |
| 402 | } |
| 403 | |
| 404 | return robot; |
| 405 | } |