15 lines
No EOL
194 B
JavaScript
15 lines
No EOL
194 B
JavaScript
$(document).ready(init);
|
|
|
|
|
|
function init() {
|
|
|
|
largeur_nav = $("#nav").width();
|
|
|
|
if (largeur_nav > 630) {
|
|
$("#nav").css({
|
|
'margin-top': '15px',
|
|
'margin-bottom': '10px',
|
|
});
|
|
}
|
|
|
|
} |