Skip to content

Commit 9dea174

Browse files
committed
The styling of PLATFORMS list is now the same as the styling of TECHNOLOGIES list.
1 parent 12bed72 commit 9dea174

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

wp/wp-content/themes/tcs-responsive/ng-page-challenge-details.php

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -145,14 +145,17 @@ function tc_challenge_details_js() {
145145

146146
<article id="platforms">
147147
<h1>Platforms</h1>
148-
<ul>
149-
<li ng-if="(hasPlatforms = CD.challenge.platforms && CD.challenge.platforms.length > 0)" ng-repeat="platform in CD.challenge.platforms" >
150-
<strong ng-bind="platform"></strong>
151-
</li>
152-
<li ng-if="!(hasPlatforms = CD.challenge.platforms && CD.challenge.platforms.length > 0)">
153-
<strong>Not Specified</strong>
154-
</li>
155-
</ul>
148+
<div class="technologyTags">
149+
<ul>
150+
<li ng-if="(hasPlatforms = CD.challenge.platforms && CD.challenge.platforms.length > 0)" ng-repeat="platform in CD.challenge.platforms" >
151+
<span>{{platform}}</span>
152+
</li>
153+
<li ng-if="!(hasPlatforms = CD.challenge.platforms && CD.challenge.platforms.length > 0)">
154+
<strong>Not Specified</strong>
155+
</li>
156+
</ul>
157+
<div class="clear"></div>
158+
</div>
156159
</article>
157160

158161
<article id="technologies">

0 commit comments

Comments
 (0)