f785972f by Michael Richards

Change the dependent property delimiter to < instead of >. [Closes #54]

1 parent 431ef966
...@@ -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
......