Jasper Haggenburg

Results 26 comments of Jasper Haggenburg

We're having the same issues using Firebase Cloud Functions (which has a valid IPv6 test).

I can't get it to work either, and I don't really understand it to be honest. If we're waiting on the gesture handler from context when the offset is 0,...

Thats too bad.. Deleting `req.headers.cookie` results in no working sessions at all. Can you point me in the right direction on how to implement the other solution?

To avoid any mixups, this is what i've tried: ``` js app .use(function(req, res, next) { if(req.query.sessionID) { req.signedCookies["connect.sid"] = req.query.sessionID; delete req.headers.cookie; } next(); }) .use(session({ httpOnly: false, secret:...

This option turned out to be pretty easy to implement, but I don't have a huge amount of experience in express-middlewares. Can you take a look and see if it...

I'm also wondering: Is this going to be merged any time soon?

@kkafar the solution seems to be working great in our first testing! One thing we've spotted so far is that the home-indicator (for iPhones without home-button) transitions a bit wonky....

This doesn't work for me either: ``` js // app.js require('node-jsx').install({ extension: '.jsx', harmony: true }); require('es6-component'); // es6-component.jsx var ES6Component = React.createClass({ render() { return (); } }); ```...