(x, y)
| 407 | mouse.releaseButton(); |
| 408 | |
| 409 | function moveTo(x, y) { |
| 410 | var currRect = bot.dom.getClientRect(element); |
| 411 | var newPos = new goog.math.Coordinate( |
| 412 | coords.x + initRect.left + x - currRect.left, |
| 413 | coords.y + initRect.top + y - currRect.top); |
| 414 | mouse.move(element, newPos); |
| 415 | } |
| 416 | }; |
| 417 | |
| 418 |