small fixes + enterKey fixes

This commit is contained in:
Divlo 2019-10-24 21:01:03 +02:00
parent c4a76a398f
commit 150e8f5116

View File

@ -2,9 +2,9 @@ $(function () {
/* ÉXECUTION DES FONCTONS */ /* ÉXECUTION DES FONCTONS */
// Touche entrer génère un clique sur les classes .btn // Touche entrer génère un clique sur les classes .btn à part sur la page convertEncoding
$("body").keydown(function(e){ $("body").keydown(function(e){
if(e.which === 13){ if(e.which === 13 && chemin !== '/views/function-views/convertEncoding.php'){
$(".btn").click(); $(".btn").click();
} }
}); });
@ -92,7 +92,7 @@ $(function () {
$('.resultsRandomQuote').html(getRandomQuote()); $('.resultsRandomQuote').html(getRandomQuote());
}); });
// Affichage d'une citation au chargement de la page // Affichage d'une citation au chargement de la page
if (randomQuoteClicked != true && window.location.href.includes("randomQuote")) { if (randomQuoteClicked != true && chemin === '/views/function-views/randomQuote.php') {
$('.resultsRandomQuote').html(getRandomQuote()); $('.resultsRandomQuote').html(getRandomQuote());
} }