Skip to content

Commit

Permalink
Clean up some unneeded support code
Browse files Browse the repository at this point in the history
  • Loading branch information
marvac committed Mar 19, 2019
1 parent d3ba4bf commit 57ed21b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ bld/
# Visual Studio 2015/2017 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
wwwroot/

# Visual Studio 2017 auto generated files
Generated\ Files/
Expand Down
1 change: 0 additions & 1 deletion Client/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
//"outputPath": "dist/Client",
"outputPath": "../wwwroot",
"index": "src/index.html",
"main": "src/main.ts",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="card mb-4">
<div class="card-img-wrapper">
<img class="card-img-top" src="{{user.photoUrl || '../../../assets/placeholder.png'}}" alt="{{user.knownAs}}" />
<img class="card-img-top" src="{{user.photoUrl}}" alt="{{user.knownAs}}" />
<ul class="list-inline member-icons animate text-center">
<li class="list-inline-item">
<button class="btn btn-primary" [routerLink]="['/members/', user.id]"><i class="fa fa-user"></i> </button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="row">
<div class="col-sm-4">
<div class="card">
<img class="card-img-top img-thumbnail" src="{{user.photoUrl || '../../../assets/placeholder.png'}}" alt="{{user.knownAs}}" />
<img class="card-img-top img-thumbnail" src="{{user.photoUrl}}" alt="{{user.knownAs}}" />
<div class="card-body">
<div>
<strong>Location:</strong>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h3>Your Profile</h3>
<div class="row">
<div class="col-sm-4">
<div class="card">
<img class="card-img-top img-thumbnail" src="{{photoUrl || '../../../assets/placeholder.png'}}" alt="{{user.knownAs}}" />
<img class="card-img-top img-thumbnail" src="{{photoUrl}}" alt="{{user.knownAs}}" />
<div class="card-body">
<div>
<strong>Location:</strong>
Expand Down
2 changes: 1 addition & 1 deletion Client/src/app/components/nav-menu/nav-menu.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<div class="dropdown" *ngIf="isAuthenticated()" dropdown>
<span class="mr-2">
<img src="{{ photoUrl || '../../assets/placeholder.png'}}" />
<img src="{{ photoUrl }}" />
</span>
<a class="dropdown-toggle text-light" dropdownToggle>
Welcome {{ authService.decodedToken?.unique_name | titlecase }}
Expand Down
4 changes: 2 additions & 2 deletions Client/src/index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<!doctype html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Client</title>
<title>Friendster</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
Expand Down

0 comments on commit 57ed21b

Please sign in to comment.