Subversion Repositories Applications.dictionnaire

Rev

Rev 5 | Rev 7 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5 Rev 6
Line 71... Line 71...
71
          }).each(function() {
71
          }).each(function() {
72
        	  element = $(this);
72
        	  element = $(this);
73
        	  texte = element.text();
73
        	  texte = element.text();
74
        	  if(texte != "") {
74
        	  if(texte != "") {
75
	        	  $.each(mots, function(index, valeur) {	
75
	        	  $.each(mots, function(index, valeur) {	
76
	        		  def = valeur['cle'];
-
 
77
	        		  texte = rechercherEtRemplacerMotParDefinition(texte, def);
76
	        		  texte = rechercherEtRemplacerMotParDefinition(texte, valeur);
78
	        	  });	
77
	        	  });	
79
	        	  element.replaceWith(texte);
78
	        	  element.replaceWith(texte);
80
        	  }
79
        	  }
81
          });
80
          });
82
    });
81
    });
Line 98... Line 97...
98
 
97
 
99
function getMotsADefinitions() {
98
function getMotsADefinitions() {
100
	$.ajax({
99
	$.ajax({
101
		url: getUrlBaseService()+'mots/',
100
		url: getUrlBaseService()+'mots/',
102
		success: function(data) {
-
 
103
			motsAyantDefinition = null;
101
		success: function(data) {
104
			motsAyantDefinition = data;
102
			motsAyantDefinition = data;
105
			ajouterDefinitions(motsAyantDefinition);
103
			ajouterDefinitions(motsAyantDefinition);
106
		},
104
		},
107
		dataType: "JSON",
105
		dataType: "JSON",