Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2991 Rev 3045
Line 532... Line 532...
532
};
532
};
Line 533... Line 533...
533
 
533
 
534
WidgetSaisie.prototype.testerLancementRequeteIdentite = function(event) {
534
WidgetSaisie.prototype.testerLancementRequeteIdentite = function(event) {
535
	if (event.which == 13) {
535
	if (event.which == 13) {
536
		this.requeterIdentite();
536
		this.requeterIdentite();
537
		this.event.preventDefault();
537
		event.preventDefault();
538
		this.event.stopPropagation();
538
		event.stopPropagation();
539
	}
539
	}
Line 540... Line 540...
540
};
540
};
541
 
541