Réusinage du javascript pour avoir les mots complètement dans l'ordre alphabétique.

This commit is contained in:
Christophe-Marie Duquesne
2015-12-06 16:39:58 +01:00
parent e36400c943
commit 97eef5dfea
2 changed files with 80 additions and 121 deletions

View File

@@ -11,8 +11,8 @@
<script>
$( function() {
$.getJSON( "traductions.json", function( traductions ) {
construitListe(window, traductions);
$( "#lienChange" ).click( function() {changeDeSens(window, traductions);} );
construitListe(traductions);
$( "#lienChange" ).click( function() {changeDeSens(traductions);} );
});
});
</script>