7eb0dcef by Michael Richards

Double-negate the routine value in the if / unless binder so that we're comparin…

…g a string boolean value.
1 parent afa85e87
......@@ -458,7 +458,7 @@ Rivets.binders =
@nested?.unbind()
routine: (el, value) ->
if value is not @nested?
if !!value is not @nested?
if value
models = {}
models[key] = model for key, model of @view.models
......