Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit ffbd2c9

Browse files
committed
Updated dependencies.
1 parent e679ec4 commit ffbd2c9

File tree

3 files changed

+17
-22
lines changed

3 files changed

+17
-22
lines changed

src/app/auth/auth.js

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,25 @@
1717
'exceptionless.validators'
1818
])
1919
.config(['$authProvider', '$stateProvider', 'BASE_URL', 'FACEBOOK_APPID', 'GOOGLE_APPID', 'GITHUB_APPID', 'LIVE_APPID', function ($authProvider, $stateProvider, BASE_URL, FACEBOOK_APPID, GOOGLE_APPID, GITHUB_APPID, LIVE_APPID) {
20-
$authProvider.loginUrl = BASE_URL + '/auth/login';
20+
$authProvider.baseUrl = BASE_URL;
2121
$authProvider.loginRedirect = false;
2222
$authProvider.logoutRedirect = '/login';
23-
$authProvider.signupUrl = BASE_URL + '/auth/signup';
2423
$authProvider.signupRedirect = false;
25-
$authProvider.unlinkUrl = BASE_URL + '/auth/unlink/';
2624

2725
$authProvider.facebook({
28-
clientId: FACEBOOK_APPID,
29-
url: BASE_URL + '/auth/facebook'
26+
clientId: FACEBOOK_APPID
3027
});
3128

3229
$authProvider.google({
33-
clientId: GOOGLE_APPID,
34-
url: BASE_URL + '/auth/google'
30+
clientId: GOOGLE_APPID
3531
});
3632

3733
$authProvider.github({
38-
clientId: GITHUB_APPID,
39-
url: BASE_URL + '/auth/github'
34+
clientId: GITHUB_APPID
4035
});
4136

4237
$authProvider.live({
4338
clientId: LIVE_APPID,
44-
url: BASE_URL + '/auth/live',
4539
scope: ['wl.emails']
4640
});
4741

src/bower.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"angular": "~1.3.15",
1212
"angular-animate": "~1.3.15",
13-
"angular-bootstrap": "~0.12.1",
13+
"angular-bootstrap": "~0.13.0",
1414
"angular-dialog-service": "~5.2.6",
1515
"angular-filter": "~0.5.3",
1616
"angular-gravatar": "~0.3.0",
@@ -24,7 +24,7 @@
2424
"angular-payments": "*",
2525
"angular-resource": "~1.3.15",
2626
"angular-signalr-hub": "~1.4.1",
27-
"angular-stripe": "~4.1.0",
27+
"angular-stripe": "~4.2.3",
2828
"angular-ui-router": "~0.2.13",
2929
"angular-xeditable": "~0.1.9",
3030
"angularjs-toaster": "~0.4.10",
@@ -34,30 +34,31 @@
3434
"checklist-model": "~0.2.4",
3535
"d3": "~3.5.5",
3636
"es5-shim": "~4.1.0",
37-
"es6-shim": "0.27.1",
37+
"es6-shim": "0.31.0",
3838
"font-awesome": "~4.3.0",
3939
"handlebars": "~3.0.0",
4040
"jquery": "~2.1.3",
41-
"less.js": "~2.4.0",
41+
"less.js": "~2.5.0",
4242
"li": "~1.0.1",
43-
"lodash": "~3.5.0",
44-
"moment": "~2.9.0",
43+
"lodash": "~3.8.0",
44+
"moment": "~2.10.2",
4545
"ng-clip": "~0.2.6",
4646
"ng-debounce": "~0.1.5",
4747
"ng-filters": "~1.2.0",
4848
"objectid.js": "~1.0.0",
49-
"query-string": "~1.0.0",
50-
"restangular": "~1.4.0",
49+
"query-string": "~1.0.1",
50+
"restangular": "~1.5.1",
5151
"rickshaw": "~1.5.1",
52-
"satellizer": "~0.9.4",
52+
"satellizer": "~0.10.1",
5353
"signalr": "~2.2.0",
5454
"trunk8": "~1.3.3",
5555
"twix": "~0.6.0"
5656
},
5757
"resolutions": {
5858
"angular": "~1.3.15",
59-
"angular-bootstrap": "~0.12.1",
59+
"angular-bootstrap": "~0.13.0",
6060
"bootstrap": "~3.3.4",
61-
"lodash": "~3.5.0"
61+
"lodash": "~3.8.0",
62+
"moment": "~2.10.2"
6263
}
6364
}

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
<script src="//code.jquery.com/jquery-2.1.3.min.js" data-concat="false" data-remove="false"></script>
5353
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" data-concat="false" data-remove="false"></script>
54-
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.5.0/lodash.min.js" data-concat="false" data-remove="false"></script>
54+
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.8.0/lodash.min.js" data-concat="false" data-remove="false"></script>
5555
<script type="text/javascript" src="https://js.stripe.com/v2/" data-concat="false" data-remove="false"></script>
5656

5757
<!-- Livereload script for development only (stripped during dist build) -->

0 commit comments

Comments
 (0)