0.6.17
Wrap event handlers set with .on[event] = handler
syntax.
This patch release makes it so can-zone
wraps event handlers like the following:
var div = document.createElement("div");
// handleClick should run within the current zone now.
div.onclick = function handleClick() {
};