Signalr working with Font-Awesome

This commit is contained in:
Mark McDowall 2012-10-11 20:16:57 -07:00
commit 3ce8ffe21f
2 changed files with 41 additions and 28 deletions

View file

@ -54,32 +54,48 @@
});
});
$('[data-status]').livequery(function () {
var status = $(this).attr('data-status');
$('[data-status="Downloading"]').livequery(function () {
$(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');
}
$(this).addClass('icon-download-alt');
});
$('[data-status="Ready"]').livequery(function() {
$(this).removeClass(function (index, css) {
return (css.match(/\bicon-\S+/g) || []).join(' ');
});
$(this).addClass('icon-play');
});
$('[data-status="AirsToday"]').livequery(function () {
$(this).removeClass(function (index, css) {
return (css.match(/\bicon-\S+/g) || []).join(' ');
});
$(this).addClass('icon-time');
});
$('[data-status="NotAired"]').livequery(function () {
$(this).removeClass(function (index, css) {
return (css.match(/\bicon-\S+/g) || []).join(' ');
});
$(this).addClass('icon-calendar');
});
$('[data-status="Missing"]').livequery(function () {
$(this).removeClass(function (index, css) {
return (css.match(/\bicon-\S+/g) || []).join(' ');
});
$(this).addClass('icon-sign-blank');
if (status == 'Missing') {
$(this).addClass('icon-sign-blank');
}
});
$('.infoBox, .successBox, .warningBox, .errorBox, .validationBox').livequery(function () {