diff options
| author | Michael <[email protected]> | 2017-04-07 09:11:06 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-04-07 09:11:06 -0400 |
| commit | 6989516207321b6d99c6b04879b5a9a438527107 (patch) | |
| tree | 8b1e4d7daa0dee5d0ee26733e9d350de404117e4 | |
| parent | 62fc513e42ff6a52a8dbe69c0555fdf7fdb28ccc (diff) | |
| download | project-unite-6989516207321b6d99c6b04879b5a9a438527107.tar.gz project-unite-6989516207321b6d99c6b04879b5a9a438527107.tar.bz2 project-unite-6989516207321b6d99c6b04879b5a9a438527107.zip | |
Better like/dislike icons on wiki
| -rw-r--r-- | Project-Unite/Views/Wiki/Index.cshtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Project-Unite/Views/Wiki/Index.cshtml b/Project-Unite/Views/Wiki/Index.cshtml index 737f30a..d3772a2 100644 --- a/Project-Unite/Views/Wiki/Index.cshtml +++ b/Project-Unite/Views/Wiki/Index.cshtml @@ -87,8 +87,8 @@ { <ul class="nav nav-pills"> <li>Was this page helpful?</li> - <li><a href="@Url.Action("LikePage", new { id = Model.Page.Id })"><span class="glyphicon glyphicon-check"></span> @Model.Page.Likes.Length</a></li> - <li><a href="@Url.Action("DislikePage", new { id = Model.Page.Id })"><span class="close"></span> @Model.Page.Dislikes.Length</a></li> + <li><a href="@Url.Action("LikePage", new { id = Model.Page.Id })"><span class="glyphicon glyphicon-thumbs-up"></span> @Model.Page.Likes.Length</a></li> + <li><a href="@Url.Action("DislikePage", new { id = Model.Page.Id })"><span class="glyphicon glyphicon-thumbs-down"></span> @Model.Page.Dislikes.Length</a></li> </ul> } |
