ae93758f by Michael Richards

Fix missed comma in unbindEvent call.

1 parent 3a018796
...@@ -100,7 +100,7 @@ class Rivets.Binding ...@@ -100,7 +100,7 @@ class Rivets.Binding
100 Rivets.config.adapter.unsubscribe @model, @keypath, @sync 100 Rivets.config.adapter.unsubscribe @model, @keypath, @sync
101 101
102 if @isBidirectional() 102 if @isBidirectional()
103 unbindEvent @el 'change', @publish 103 unbindEvent @el, 'change', @publish
104 104
105 if @options.dependencies?.length 105 if @options.dependencies?.length
106 for keypath in @options.dependencies 106 for keypath in @options.dependencies
......