Results 17 comments of wzup

React implementation would be awesome. https://github.com/kylefox/jquery-modal/issues/175

Well, actually you have. But why it doesn't work? Here it is, in this folder: `\compass-mixins\lib\compass\css3\_images.scss` This is how I use the mixin. Why loader cannot find it? ``` .material-icon-custom...

@yujiahaol68 > kill-port: command not found

Same issue here https://github.com/chaijs/chai-http/issues/165 Thanks a lot for not documenting it. I wasted 1 hour to understand that plugin's README is just a fantasy that has nothing to do with...

@crazycodeboy Why this is not fixed yet?? More then a year now

I have this error on Windows 8.1 64: ``` MSBUILD : error MSB3428: Could not load the Visual C++ component "VCBuild.exe". To fix this, 1) install the .NET Framework 2.0...

```javascript // one userExist( userName: string ) { return Auth.signIn( userName, '123' ); } // two userExist( email: string ) { return this.cognitoService.userExist( email.toLowerCase() ) .then( res => { return...

@michelmob , thank you. One question though. What is `this` in your example? Where does `.cognito` live? ```javascript return this.cognitoService.userExist( email.toLowerCase() ) ```

@michelmob @haverchuck But what if credentials are correct? ```javascript Auth.signIn(userName, '123'); ``` Then a user that wants to sign up will be suddenly signed in instead. This is definitely bad...

@haverchuck Here is why requested method I ask for is important. With current authflow we have to signin and then signout a user just to check if an email (username)...