I thought I’d share a quick gotcha when wiring function callbacks with $addHandler in JavaScript. $addHandler takes in a DOM element, the name of the event, and a method to handle it. This looks something like: var button = document.createElement(‘input’);
Read More...