Task #0001526: Problème navigation - retour en haut de la fenêtre si flèches de navigation

This commit is contained in:
Dany De Bontridder 2018-03-11 09:42:09 +01:00
parent a8de73dc6c
commit efad6f47f6

2
html/js/controls.js vendored
View file

@ -220,7 +220,7 @@ Autocompleter.Base = Class.create({
markNext: function() {
if(this.index < this.entryCount-1) this.index++;
else this.index = 0;
this.getEntry(this.index).scrollIntoView(false);
//this.getEntry(this.index).scrollIntoView(false);
},
getEntry: function(index) {