Blame view

webroot/js/onTabHover.js 264 Bytes
8fc420fa   Etienne Pallier   une etape de plus...
1
2
//jQuery(document).ready(function($){
$(document).ready(function(){
a5cb3daf   Thibaud Ajas   ERGONOMIE - Ajout...
3
4
5
6
7
8
9
	$('table').each(function() {
		// Si il y a plus de 4 lignes dans le tableau on les surligne au survol, sinon c'est moche
		if (this.rows.length > 4) {
			$(this).addClass('survol');
		}
	});
});