Blame view

webroot/js/onTabHover.js 232 Bytes
a5cb3daf   Thibaud Ajas   ERGONOMIE - Ajout...
1
2
3
4
5
6
7
8
jQuery(document).ready(function($){
	$('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');
		}
	});
});