Subversion Repositories Applications.dictionnaire

Rev

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

Rev 22 Rev 23
Line 83... Line 83...
83
// du dictionnaire
83
// du dictionnaire
84
var exclureBlancs = new RegExp('^\\s*$');
84
var exclureBlancs = new RegExp('^\\s*$');
Line 85... Line 85...
85
 
85
 
86
function afficherLienDefinitions() {
86
function afficherLienDefinitions() {
87
	html = '<div id="conteneur_activation_definition"><a href="#">rechercher les définitions</a></div>';
87
	html = '<div id="conteneur_activation_definition"><a href="#">rechercher les définitions</a></div>';
88
	$('#conteneur_activation_definition').live('click', function(event) {
88
	$('#conteneur_activation_definition').on('click', function(event) {
89
		event.preventDefault();
89
		event.preventDefault();
90
		//supprimerToutesDefinitions();
90
		//supprimerToutesDefinitions();
91
		if(motsAyantDefinition == null) {
91
		if(motsAyantDefinition == null) {
92
			getMotsADefinitions();
92
			getMotsADefinitions();
Line 252... Line 252...
252
		'</span>';
252
		'</span>';
253
	return definitionHtml;
253
	return definitionHtml;
254
}
254
}
Line 255... Line 255...
255
 
255
 
256
function ajouterListenerDefinitions() {
256
function ajouterListenerDefinitions() {
257
	$('.definition_term').live('mouseover mouseout', function(event) {
257
	$('.definition_term').on('mouseover mouseout', function(event) {
258
		if (event.type == 'mouseover') {
258
		if (event.type == 'mouseover') {
259
			event.preventDefault();
259
			event.preventDefault();
260
			afficherDefinition($(this));
260
			afficherDefinition($(this));
261
		} else {
261
		} else {