Skip to content

Commit 7481263

Browse files
committed
projects.html: Fix inconsistent whitespaces
This will remove trailing whitespaces and fix its inconsistency Fixes #795
1 parent a230871 commit 7481263

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

partials/tabs/projects.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</div>
1616
</div>
1717
<div class="all-filters-option apply-flex center-content fade-in" ng-class="{'display-none':!lc.displayFilters}">
18-
<span>
18+
<span>
1919
<div ng-class="{'display-none':!lc.displayFilters}" ng-click="toggleFiltersDisplay()">
2020
<i class="fa fa-times close-filters"></i>
2121
</div>
@@ -59,8 +59,8 @@ <h4><b>Filter Projects</b></h4>
5959
<div class="card-title center">{{ project.name }}</div>
6060
<div btf-markdown="project.desc" class="markdown"></div>
6161
</div>
62-
<div ng-show="project.mentors.length>0" class="card-action"> <span ng-repeat="mentor in project.mentors | limitTo:4"><a ng-href="https://github.com/{{mentor}}" class="mentors-github-id" target="_blank">{{mentor}}</a></span> </div>
63-
<div ng-show="project.difficulty.length>0" class="project-overview-element clickable card-action"> <span ng-click="search(project.difficulty)" class="pr-element-detail chip" >{{ project.difficulty }}</span>
62+
<div ng-show="project.mentors.length>0" class="card-action"> <span ng-repeat="mentor in project.mentors | limitTo:4"><a ng-href="https://github.com/{{mentor}}" class="mentors-github-id" target="_blank">{{ mentor }}</a></span> </div>
63+
<div ng-show="project.difficulty.length>0" class="project-overview-element clickable card-action"> <span ng-click="search(project.difficulty)" class="pr-element-detail chip">{{ project.difficulty }}</span>
6464
<br> </div>
6565
<div ng-show="project.initiatives.length>0" class="project-overview-element clickable card-action"> <span ng-click="search(initiative)" class="pr-element-detail chip" ng-repeat="initiative in project.initiatives">{{ initiative }}</span>
6666
<br> </div>
@@ -105,11 +105,11 @@ <h4><b>Filter Projects</b></h4>
105105
<div ng-show="currentProject.mentors.length>0" class="project-detail-element">
106106
<div class="small-heading uppercase">Mentors</div>
107107
<span class="pr-element-detail chip" ng-repeat="mentor in currentProject.mentors">
108-
<a ng-href="https://github.com/{{mentor}}" class="mentors-github-id chip" target="_blank">@{{mentor}}</a>
108+
<a ng-href="https://github.com/{{mentor}}" class="mentors-github-id chip" target="_blank">@{{ mentor }}</a>
109109
</span>
110110
</div>
111111
<div ng-show="currentProject.developers_involved.length>0" class="project-detail-element">
112-
<div class="small-heading uppercase">Developers Involved</div> <span class="pr-element-detail chip" ng-repeat="developers in currentProject.developers_involved">@{{developers}}</span> </div>
112+
<div class="small-heading uppercase">Developers Involved</div> <span class="pr-element-detail chip" ng-repeat="developers in currentProject.developers_involved">@{{ developers }}</span> </div>
113113
<div ng-show="currentProject.issues.length>0" class="project-detail-element">
114114
<div class="small-heading uppercase">Related issues</div> <span ng-click="redirect(issue)" class="pr-element-detail chip clickable" ng-repeat="issue in currentProject.issues">{{ issue | format_issue }}</span>
115115
<br>

0 commit comments

Comments
 (0)