a8487e71 by Michael Richards

Make sure that we pass along to view's local config to the iterated views, forci…

…ng config.preloadData to true.
1 parent 89b89668
......@@ -404,8 +404,16 @@ Rivets.binders =
else
@marker
options =
binders: @view.options.binders
formatters: @view.options.formatters
config: {}
options.config[k] = v for k, v of @view.options.config
options.config.preloadData = true
template = el.cloneNode true
@iterated.push rivets.bind template, data
@iterated.push rivets.bind template, data, options
@marker.parentNode.insertBefore template, previous.nextSibling
else if @iterated[index].models[modelName] isnt model
@iterated[index].update data
......