2015-11-15 18:10:33 +00:00
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/********************************/
|
|
|
|
/* GESTION DE L'AFFINAGE PAR UE */
|
|
|
|
/********************************/
|
2015-11-16 11:02:03 +00:00
|
|
|
var partList = document.querySelectorAll("#CONTAINER > section[name] > table.partlist[name=UE], #CONTAINER > section[name] > table.partlist[name=semestre]");
|
2015-11-15 18:10:33 +00:00
|
|
|
|
|
|
|
for( var i = 0 ; i < partList.length ; i++ ){
|
|
|
|
|
|
|
|
partList[i].addEventListener('click', function(e){
|
|
|
|
var tableauParent = e.target.parentNode.parentNode.parentNode;
|
|
|
|
|
2015-11-16 11:02:03 +00:00
|
|
|
if( tableauParent.tagName == 'TABLE' && e.target.dataset.hasOwnProperty('value') ){
|
2015-11-15 18:10:33 +00:00
|
|
|
|
2015-11-16 11:02:03 +00:00
|
|
|
/* SI c'est une affinage par SEMESTRE */
|
|
|
|
if( tableauParent.getAttribute('name') == 'semestre' )
|
|
|
|
pageM.vars[1] = 's:'+e.target.dataset.value;
|
|
|
|
|
|
|
|
/* SI c'est un affinage par UE */
|
|
|
|
if( tableauParent.getAttribute('name') == 'UE' )
|
|
|
|
pageM.vars[1] = 'u:'+e.target.dataset.value;
|
|
|
|
|
2015-11-15 18:10:33 +00:00
|
|
|
// si on a '*' comme valeur, on l'enlève
|
|
|
|
if( /\*$/.test(pageM.vars[1]) )
|
|
|
|
pageM.vars.pop();
|
|
|
|
|
|
|
|
reload();
|
|
|
|
}
|
|
|
|
}, false);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-->
|