Removed extraneous icons

Font Awesomed AddSeries
Font Awesomed gritter
This commit is contained in:
Mark McDowall
2012-10-11 10:25:31 -07:00
parent 6ffb99f84f
commit a3d4b7ed82
36 changed files with 50 additions and 37 deletions

View File

@@ -8,7 +8,7 @@
@foreach (var root in Model)
{
<div class="actionButton delete">
<img src="../../Content/Images/x_16.png" alt="delete" id='@root'/>
<i class="icon-remove icon-large delete-root" data-path="@root"></i>
<span>@root</span>
</div>
}

View File

@@ -95,7 +95,7 @@
}, //Date
{ sName: 'Actions', sWidth: '40px', "mDataProp": "HistoryId", "bSortable": false, "bSearchable": false, "fnRender": function (row) {
var deleteImage = '<i class="icon-remove gridAction" title="Delete from History" onclick="deleteHistory(this.parentNode.parentNode, ' + row.aData["HistoryId"] + ')"></i>';
var redownloadImage = '<i class="icon-share-alt gridAction" title="Redownload Episode" onclick="redownloadHistory(this.parentNode.parentNode, ' + row.aData["HistoryId"] + ', ' + row.aData["EpisodeId"] + ')"></i>';
var redownloadImage = '<i class="icon-repeat gridAction" title="Redownload Episode" onclick="redownloadHistory(this.parentNode.parentNode, ' + row.aData["HistoryId"] + ', ' + row.aData["EpisodeId"] + ')"></i>';
return deleteImage + redownloadImage;
}