[hg] galaxy 3196: Fix autocomplete IE bug. Fix enables autocompl...
details: http://www.bx.psu.edu/hg/galaxy/rev/d63ccd7f6d4c changeset: 3196:d63ccd7f6d4c user: jeremy goecks <jeremy.goecks@emory.edu> date: Mon Jan 04 15:20:29 2010 -0500 description: Fix autocomplete IE bug. Fix enables autocomplete to work on IE and hence dbkey select box to work on IE. diffstat: static/scripts/jquery.autocomplete.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diffs (12 lines): diff -r ec34b27de1c0 -r d63ccd7f6d4c static/scripts/jquery.autocomplete.js --- a/static/scripts/jquery.autocomplete.js Mon Jan 04 12:51:34 2010 -0500 +++ b/static/scripts/jquery.autocomplete.js Mon Jan 04 15:20:29 2010 -0500 @@ -655,7 +655,7 @@ function headerAtPosition(position) { dataAtPosition = data[position].data; - return (dataAtPosition.indexOf("#Header") == 0); + return (dataAtPosition[0].indexOf("#Header") == 0); } function moveSelect(step) {
participants (1)
-
Greg Von Kuster