diff --git a/xpfe/global/resources/content/bindings/listbox.xml b/xpfe/global/resources/content/bindings/listbox.xml index 9df6a7cd6b67..30f5e9acc0f0 100644 --- a/xpfe/global/resources/content/bindings/listbox.xml +++ b/xpfe/global/resources/content/bindings/listbox.xml @@ -40,7 +40,6 @@ @@ -73,6 +72,10 @@ onset="if (val) this.setAttribute('disableKeyNavigation', 'true'); else this.removeAttribute('disableKeyNavigation'); return val;"/> + + @@ -138,6 +141,7 @@ ]]> + [] 0 ? this.selectedItems[0] : null; @@ -514,7 +518,7 @@ var n = this.getPreviousItem(this.selectedItems[this.selectedItems.length-1], 1); if (n) { this.ensureIndexIsVisible(this.getIndexOfItem(n)); - this.timedSelect(n, 500); + this.timedSelect(n, this._selectDelay); } ]]> @@ -532,7 +536,7 @@ if (n) { this.ensureIndexIsVisible(this.getIndexOfItem(n)); - this.timedSelect(n, 500); + this.timedSelect(n, this._selectDelay); } ]]> @@ -598,7 +602,7 @@ } this.scrollToIndex(newIndex); } - this.timedSelect(n, 500); + this.timedSelect(n, this._selectDelay); ]]> @@ -623,7 +627,7 @@ } this.scrollToIndex(newIndex); } - this.timedSelect(n, 500); + this.timedSelect(n, this._selectDelay); ]]> @@ -701,7 +705,7 @@ this._isUpSelection=0; this._isDownSelection=0; this.ensureIndexIsVisible(k); - this.timedSelect(item, 500); + this.timedSelect(item, this._selectDelay); break; } }