mxstbr / login-flow

:key: A login/register flow built with React&Redux
https://loginflow.mxstbr.com
MIT License
1.6k stars 215 forks source link

What's the meaning of ::this ? #16

Closed GabScheder closed 8 years ago

GabScheder commented 8 years ago

Hi Max Stoiber,

I'm just trying to figure out what's the meaning of ::this https://github.com/mxstbr/login-flow/blob/master/js/components/pages/LoginPage.react.js#L28 I never saw something like that before.

thanks, Gab

geakstr commented 8 years ago

This is new function binding syntax in ES7 https://babeljs.io/blog/2015/05/14/function-bind

GabScheder commented 8 years ago

Thanks !

mxstbr commented 8 years ago

Seems like @geakstr was a lot faster than me, thanks for the quick answer!