Example from docs :
Picker.route("/", function(params, req, res, next) {
var ejsonData = {aa: 10};
InjectData.pushData(res, "some-key", ejsonData);
// make sure to move the routing forward.
next();
});
AND
InjectData.getData("some-key", function(data) {
console.log(data);
});
doesn't work.
On client data is undefined and should be {{aa:10}}
What is more important, this bug breaks FastRender !