Font-Awesomed Series/Details

New: Replaced icons with Font-Awesome SVG icons
This commit is contained in:
Mark McDowall 2012-10-10 19:02:17 -07:00
commit f643c5e3fb
9 changed files with 77 additions and 34 deletions

View file

@ -53,4 +53,32 @@
dateFormat: "yy-mm-dd"
});
});
$('[data-status]').livequery(function () {
var status = $(this).attr('data-status');
$(this).removeClass(function (index, css) {
return (css.match(/\bicon-\S+/g) || []).join(' ');
});
if (status == 'Downloading') {
$(this).addClass('icon-download-alt');
}
if (status == 'Ready') {
$(this).addClass('icon-play');
}
if (status == 'AirsToday') {
$(this).addClass('icon-time');
}
if (status == 'NotAired') {
$(this).addClass('icon-calendar');
}
if (status == 'Missing') {
$(this).addClass('icon-sign-blank');
}
});
});

View file

@ -1,10 +1,4 @@
var notIgnoredImage = '../../Content/Images/notIgnored.png';
var ignoredImage = '../../Content/Images/ignored.png';
var notAiredImage = '../../Content/Images/NotAired.png';
var readyImage = '../../Content/Images/Ready.png';
var downloadingImage = '../../Content/Images/Downloading.png';
var seriesId = 0;
var seriesId = 0;
var saveSeasonIgnoreUrl = '../Command/SaveSeasonIgnore';
var saveEpisodeIgnoreUrl = '../Command/SaveEpisodeIgnore';
@ -20,13 +14,11 @@ $(".ignoreEpisode").live("click", function () {
if (ignored) {
toggle.removeClass('ignored');
toggle.attr('src', notIgnoredImage);
toggleCellColour(toggle, false);
}
else {
toggle.addClass('ignored');
toggle.attr('src', ignoredImage);
toggleCellColour(toggle, true);
}
@ -51,12 +43,11 @@ $(".ignoreEpisode").live("click", function () {
});
function toggleChildren(seasonNumber, ignored) {
var ignoreEpisodes = $('[data-season="' + seasonNumber + '"]');
var ignoreEpisodes = $('[data-season="' + seasonNumber + '"]:not(table)');
if (ignored) {
ignoreEpisodes.each(function (index) {
$(this).addClass('ignored');
$(this).attr('src', ignoredImage);
toggleCellColour($(this), true);
});
}
@ -64,7 +55,6 @@ function toggleChildren(seasonNumber, ignored) {
else {
ignoreEpisodes.each(function (index) {
$(this).removeClass('ignored');
$(this).attr('src', notIgnoredImage);
toggleCellColour($(this), false);
});
@ -78,14 +68,12 @@ function toggleMasters(seasonNumber, ignored) {
if (ignored) {
masters.each(function (index) {
$(this).addClass('ignored');
$(this).attr('src', ignoredImage);
});
}
else {
masters.each(function (index) {
$(this).removeClass('ignored');
$(this).attr('src', notIgnoredImage);
});
}
}