* Inserts an action to release a mouse button at the mouse's current * location. * * @param {!Button=} button The button to release; defaults to `LEFT`. * @return {!Actions} a self reference.
(button = Button.LEFT)
| 835 | * @return {!Actions} a self reference. |
| 836 | */ |
| 837 | release(button = Button.LEFT) { |
| 838 | return this.insert(this.mouse_, this.mouse_.release(button)) |
| 839 | } |
| 840 | |
| 841 | /** |
| 842 | * scrolls a page via the coordinates given |
no test coverage detected