e60c89be by Michael Richards

Make sure to set an empty array for dependencies in the text binding constructor.

1 parent 21933b07
......@@ -218,6 +218,7 @@ class Rivets.TextBinding extends Rivets.Binding
# Initializes a text binding for the specified view and text node.
constructor: (@view, @el, @type, @keypath, @options = {}) ->
@formatters = @options.formatters || []
@dependencies = []
@setModel()
# A standard routine binder used for text node bindings.
......