Correction de divers bug.

Changement de listConference, ça affiche les roles maintenant
This commit is contained in:
Frederic Debuire
2008-02-16 15:36:20 +00:00
parent de2991b335
commit 3b0c845902
16 changed files with 174 additions and 156 deletions

View File

@@ -40,4 +40,10 @@ var AuthorManager = Class.create({
Event.observe(window,'load', function() {
new AuthorManager()
});
});
function deleteArticle(ArticleID) {
if (confirm("Are you sure you want to delete this article?")) {
document.location.href = "delete.htm?articleId=" + ArticleID;
}
}