2016-Feb-19
- Override individual res objects instead of overriding the prototype. This is a fix to support Meteor 1.3, which gave us the gzipped version of the html.
- Because of that we had to change the API a bit on the server. See:
res.pushData('key', {data: 'here'})
=>InjectData.pushData(res, 'key', {data: 'here'})
res.getData('key')
=>InjectData.getData(res, 'key')
- Use
EJSON.parse()
. See: #4
- Add support for SSR by prepending the html on top of the first script tag
- Add IE8 Compatibility