Added album page, checkboxes to artist page, more interface fixes

This commit is contained in:
Remy
2011-08-06 18:23:58 -07:00
parent 548b606c0d
commit 38e9af762b
8 changed files with 59 additions and 50 deletions

View File

@@ -32,4 +32,10 @@ jQuery.fn.dataTableExt.oSort['title-numeric-desc'] = function(a,b) {
x = parseFloat( x );
y = parseFloat( y );
return ((x < y) ? 1 : ((x > y) ? -1 : 0));
};
};
function toggle(source) {
checkboxes = document.getElementsByName('mbid');
for(var i in checkboxes)
checkboxes[i].checked = source.checked;
}