all none for conf done

This commit is contained in:
Harry Bomrah 2013-03-06 12:08:08 +08:00 committed by Matt K. Fu
parent 52789fa032
commit dabceec3ea
1 changed files with 10 additions and 0 deletions

View File

@ -227,5 +227,15 @@ orbitDesktop.prototype.initializeConferencePapers = function(target,url,cache){
break;
}
}
this.initializeConferencePapers.allnone = function(d,o){
switch(o.attr("href")){
case "all":
$("div.overview a.icon-check-empty").removeClass("icon-check-empty").addClass("icon-check");
break;
case "none":
$("div.overview a.icon-check").removeClass("icon-check").addClass("icon-check-empty");
break;
}
}
};