(buttonId, handler)
| 527 | } |
| 528 | |
| 529 | function setButtonClickHandler(buttonId, handler) { |
| 530 | var button = document.getElementById(buttonId); |
| 531 | |
| 532 | button.addEventListener('click', function () { |
| 533 | handler(); |
| 534 | button.blur(); |
| 535 | }); |
| 536 | } |
| 537 | |
| 538 | function init() { |
| 539 |