Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
# Conflicts:
#	app/user/profile/profile.component.html
  • Loading branch information
pranaysashank committed Sep 9, 2016
2 parents 20a9bf7 + ded50e0 commit 9192d1b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules/*
.idea/*
2 changes: 1 addition & 1 deletion app/login/auth.service.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/login/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class AuthService {

return this.http
.post(
'http://127.0.0.1:4568/login.php',
'http://127.0.0.1:4567/login.php',
JSON.stringify({id, password}),
{headers}
)
Expand Down
2 changes: 1 addition & 1 deletion app/user/user.service.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/user/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class UserService {
let authToken = localStorage.getItem('auth_token');
this.observable = this.http
.get(`http://127.0.0.1:4568/user.php?auth_token=${authToken}`)
.get(`http://127.0.0.1:4567/user.php?auth_token=${authToken}`)
.map((res) => {
this.observable = null;
this.user = res.json();
Expand All @@ -154,7 +154,7 @@ export class UserService {
}*/
let authToken = localStorage.getItem('auth_token');
return this.http
.get(`http://127.0.0.1:4568/user.php?auth_token=${authToken}`)
.get(`http://127.0.0.1:4567/user.php?auth_token=${authToken}`)
.map((res) => res.json());
}

Expand Down
6 changes: 4 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="node_modules/semantic-ui/dist/semantic.min.css">
<script src="node_modules/semantic-ui/dist/semantic.min.js"></script>
<!--<link rel="stylesheet" href="node_modules/semantic-ui/dist/semantic.min.css">-->
<!--<script src="node_modules/semantic-ui/dist/semantic.min.js"></script>-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.4/semantic.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.4/semantic.min.js"></script>
<!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>-->
<!-- 1. Load libraries -->
Expand Down

0 comments on commit 9192d1b

Please sign in to comment.