b80c66f5 by Michael Richards

Even though the declarations are trimmed of whitespace in Rivets.View::build, we…

… should still trim them in the tokenizer.
1 parent 0ecd9abc
......@@ -60,7 +60,7 @@ class Rivets.TextTemplateParser
break
value = template.slice(lastIndex, index)
value = template.slice(lastIndex, index).trim()
tokens.push type: @types.binding, value: value
lastIndex = index + delimiters[1].length
......