Skip to content

Commit bd15842

Browse files
committed
fix(app): fixed light blue version and fixed social auth redirecting
1 parent 61b012a commit bd15842

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Light Blue (4.0.1 Full version) with angular 5.0 Final Release support
1+
# Light Blue (7.0.1 Full version) with angular 8 Final Release support
22

33
#### A build of App with JIT compilation is unavailable now, only AOT. Please see this issue: https://github.com/gdi2290/angular-starter/issues/1921
44

5-
> An angular 5 application featuring [angular 5](https://angular.io)
5+
> An angular 8 application featuring [angular 8](https://angular.io)
66
([Router](https://angular.io/docs/js/latest/api/router/), [Forms](https://angular.io/docs/js/latest/api/forms/),
77
[Http](https://angular.io/docs/js/latest/api/http/),
88
[TypeScript](http://www.typescriptlang.org/),
@@ -216,4 +216,4 @@ import * as _ from 'lodash';
216216
# License
217217
[Wrapbootstrap licence](http://support.wrapbootstrap.com/knowledge_base/topics/usage-licenses).
218218

219-
Light Blue 4.0.1 is based on [angular2-webpack-starter](https://github.com/AngularClass/angular2-webpack-starter).
219+
Light Blue 7.0.1 is based on [angular2-webpack-starter](https://github.com/AngularClass/angular2-webpack-starter).

src/app/pages/login/login.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class LoginService {
5050
this.requestLogin();
5151
if (creds.social) {
5252
// tslint:disable-next-line
53-
window.location.href = this.config.baseURLApi + '/user/signin/' + creds.social + (process.env.NODE_ENV === 'production' ? '?app=4.0.1/angular' : '');
53+
window.location.href = this.config.baseURLApi + '/user/signin/' + creds.social + (process.env.NODE_ENV === 'production' ? '?app=light-blue/angular' : '');
5454
} else if (creds.email.length > 0 && creds.password.length > 0) {
5555
this.http.post('/user/signin/local', creds).subscribe((res: any) => {
5656
const token = res.token;

src/app/pages/main/widgets/realtime-traffic-widget/realtime-traffic-widget.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h4 class="mb-lg">Recent <span class="fw-semi-bold">Update</span></h4>
2-
<h6>Node.js <span class="fw-semi-bold">4.0.1 distribution</span></h6>
2+
<h6>Node.js <span class="fw-semi-bold">7.0.1 distribution</span></h6>
33
<div class="bg-gray-lighter progress progress-xs">
44
<div class="progress-bar progress-xs bg-danger" style="width: 77%"></div>
55
</div>

0 commit comments

Comments
 (0)