Additional Auth0 Lock changes

Somehow one of the files didn't get checked in on the last go-around.
This commit is contained in:
AdvancedREI
2015-04-01 21:04:29 -07:00
parent 75e6886882
commit 72b9fa782c
2 changed files with 46 additions and 40 deletions
+6 -6
View File
@@ -1,13 +1,13 @@
/// <reference path="../auth0/auth0.d.ts" />
/// <reference path="auth0.lock.d.ts" />
var lock = new Auth0Lock('dsa7d77dsa7d7', 'mine.auth0.com');
var lock: Auth0LockStatic = new Auth0Lock("dsa7d77dsa7d7", "mine.auth0.com");
lock.showSignin({
connections: ['facebook', 'google-oauth2', 'twitter', 'Username-Password-Authentication'],
icon: 'https://contoso.com/logo-32.png',
socialBigButtons: true
},
connections: ["facebook", "google-oauth2", "twitter", "Username-Password-Authentication"],
icon: "https://contoso.com/logo-32.png",
socialBigButtons: true
},
() => {
// The Auth0 Widget is now loaded.
});
});