c08bbe55 by Michael Richards

Rejoin the keypath using '.' instead of ','. [Closes #63]

1 parent bc1446d8
......@@ -152,7 +152,7 @@ class Rivets.View
options.formatters = pipes
model = @models[splitPath.shift()]
options.bypass = path.indexOf(":") != -1
keypath = splitPath.join()
keypath = splitPath.join '.'
if model
if dependencies = context.shift()
......