48ca4e77 by Chad Hietala

Check for window.addEventListener

1 parent 3e12fd20
......@@ -56,7 +56,13 @@ class Rivets.Binding
@set Rivets.config.adapter.read @model, @keypath
if @type in bidirectionals
#Check to see if addEventListener is available
if window.addEventListener
@el.addEventListener 'change', @publish
else
# Assume we are in IE and attach the event
@el.attatchEvent 'change', @publish
# Publishes the value currently set on the input element back to the model.
publish: (e) =>
......