Skip to content

Commit 86534ea

Browse files
committed
Try JS: Change navigation wrapup page icon to star
1 parent 3ccf883 commit 86534ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

public/templates/course.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
<nav>
88
<ol class='completionList mbm'>
99
<li ng-repeat='challenge in ctrl.challenges' ng-class="{ 'is-active': challenge.active, 'is-completed': challenge.completed }" class='completionList-item' tooltip="{{ ::challenge.title }}">
10-
<svg class='icon completionList-item-icon' width='10' height='8'>
10+
<svg class='icon completionList-item-icon' width='10' height='10'>
1111
<use xlink:href='#icon-check'/>
1212
</svg>
1313
<a ng-if='challenge.started' ng-click='ctrl.activateChallenge(challenge)' class='completionList-item-link'></a>
1414
</li>
1515

1616
<li ng-class="{ 'is-active': ctrl.onWrapupPage(), 'is-completed': ctrl.challengeProgress.courseCompleted }" class='completionList-item' tooltip='Wrapup'>
17-
<svg class='icon completionList-item-icon' width='10' height='8'>
18-
<use xlink:href='#icon-check'/>
17+
<svg class='icon completionList-item-icon' width='14' height='14'>
18+
<use xlink:href='#icon-star'/>
1919
</svg>
2020
<a ng-if='ctrl.challengeProgress.courseCompleted' ng-click='ctrl.activateChallenge(null)' class='completionList-item-link'></a>
2121
</li>

0 commit comments

Comments
 (0)