724b6640 by Adam Heath

bother; this fixes the loopDeps optimization, that reduced the size of

the minified output file; the callback was being called in all cases,
not just when there were dependencies.
1 parent ecb605f6
......@@ -115,7 +115,7 @@ loopDeps = (binder, callback) ->
model = binder.view.models[dependency.shift()]
keypath = dependency.join '.'
callback model, keypath
callback model, keypath
expressionRegex = /(.*?)\{\{([^{}]+)\}\}/
......