Change the dependent property delimiter to < instead of >. [Closes #54]
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -139,7 +139,7 @@ class Rivets.View | ... | @@ -139,7 +139,7 @@ class Rivets.View |
139 | 139 | ||
140 | type = attribute.name.replace bindingRegExp, '' | 140 | type = attribute.name.replace bindingRegExp, '' |
141 | pipes = (pipe.trim() for pipe in attribute.value.split '|') | 141 | pipes = (pipe.trim() for pipe in attribute.value.split '|') |
142 | context = (ctx.trim() for ctx in pipes.shift().split '>') | 142 | context = (ctx.trim() for ctx in pipes.shift().split '<') |
143 | path = context.shift() | 143 | path = context.shift() |
144 | splitPath = path.split /\.|:/ | 144 | splitPath = path.split /\.|:/ |
145 | options.formatters = pipes | 145 | options.formatters = pipes | ... | ... |
-
Please register or sign in to post a comment