Rejoin the keypath using '.' instead of ','. [Closes #63]
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -152,7 +152,7 @@ class Rivets.View | ... | @@ -152,7 +152,7 @@ class Rivets.View |
152 | options.formatters = pipes | 152 | options.formatters = pipes |
153 | model = @models[splitPath.shift()] | 153 | model = @models[splitPath.shift()] |
154 | options.bypass = path.indexOf(":") != -1 | 154 | options.bypass = path.indexOf(":") != -1 |
155 | keypath = splitPath.join() | 155 | keypath = splitPath.join '.' |
156 | 156 | ||
157 | if model | 157 | if model |
158 | if dependencies = context.shift() | 158 | if dependencies = context.shift() | ... | ... |
-
Please register or sign in to post a comment