7c956003 by Michael Richards

Make sure we're not trying to update the nested view in the if binder if it's no…

…n-existant at that point.
1 parent c390f392
...@@ -560,7 +560,7 @@ Rivets.binders = ...@@ -560,7 +560,7 @@ Rivets.binders =
560 delete @nested 560 delete @nested
561 561
562 update: (models) -> 562 update: (models) ->
563 @nested.update models 563 @nested?.update models
564 564
565 unless: 565 unless:
566 block: true 566 block: true
......