8 lines
238 B
JavaScript
8 lines
238 B
JavaScript
function Album(elt)
|
|
{
|
|
this.id = elt.getAttribute("id");
|
|
this.type = parseInt(elt.getAttribute("type"));
|
|
this.titre = elt.getAttribute("titre");
|
|
if (elt.hasAttribute("couleur"))
|
|
this.color = elt.getAttribute("couleur");
|
|
}
|