()
| 11 | |
| 12 | // Public methods |
| 13 | public run(): void{ |
| 14 | // We copy the render link so we can use it in the functions below |
| 15 | var renderLink: RenderLinkClick = this; |
| 16 | |
| 17 | $(this.element).mouseup(function(event){ |
| 18 | renderLink.callbackCollection.fire(); |
| 19 | return false; // Avoid event bubbling |
| 20 | }); |
| 21 | } |
| 22 | } |