Ben Styles
Ben Styles
Which version of rivets are you using?
Could you try updating to `0.9.6` and see if it fixes your issue? `0.9.5` [added a fix](https://github.com/mikeric/rivets/blob/master/CHANGELOG.md) regarding jQuery usage.
If you look at how Rivets watches arrays, it watches for the `Array.prototype` methods such as `push()`, `unshift()` etc. So you have to treat arrays with care if you want...
Looks OK to me, I would recommend you use the es6 branch rather than the master coffeescript branch as the es6 one is what we will be moving over to...
I'm trying to address the `Rivets.TextTemplateParser is undefined` errors. It seems that `TextTemplateParser.parse()` has been replaced by `parseTemplate()`, but this is now exposed as an ES6 module rather than a...
After spending some more time with the code, I think we have 2 options: add an extra property to the rivets factory in `export.js` that can expose private functions for...
Having a hard time researching how to elegantly integrate a babel compiler as part of the `mocha-phantomjs` test script. This would be a lot easier with Karma, I feel. Reckon...
@MiguelCastillo Your module loader sounds intriguing. Is it public?
@MiguelCastillo so how would we go about setting this up for the rivets tests? If I understand your docs correctly, we load bit-imports in a regular script tag in the...
Hi everyone, I've just pushed a commit that gets the `parseTemplate` module function into the global scope so it can be tested. It's not the prettiest solution but I haven't...