This repository has been archived by the owner on Sep 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove hardcoded GOOGLE_API_KEY that was spread around in the code an…
…d define it in hub.config.js. Fix broken links in Organizer cards.
- Loading branch information
Showing
7 changed files
with
26 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
<div class="card people"> | ||
<div class="card-top green"> | ||
<a href="#"> | ||
<img ng-src="{{person.image.url}}" alt=""/> | ||
<a ng-href="https://plus.google.com/{{gplusId}}"> | ||
<img ng-src="{{person.image.url}}" alt="{{person.displayName}}"/> | ||
</a> | ||
</div> | ||
<div class="card-info"> | ||
<a class="title" href="#">{{person.displayName}}</a> | ||
<a class="title" ng-href="https://plus.google.com/{{gplusId}}">{{person.displayName}}</a> | ||
<div class="desc" ng-bind-html="person.aboutMe"></div> | ||
</div> | ||
<div class="card-bottom"> | ||
<a ng-href="https://plus.google.com/{{gplusId}}"><button class="btn btn-block">Profile on G+</button></a> | ||
<a ng-href="https://plus.google.com/{{gplusId}}"> | ||
<button class="btn btn-block">Profile on G+</button> | ||
</a> | ||
</div> | ||
</div> | ||
</div> |