Modify ↓
#8429 closed defect (wontfix)
Path completion in "Prepare Diff" doesn't work with Internet Explorer
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | version control | Version: | 0.11.3 |
Severity: | normal | Keywords: | anydiff iexplorer suggest.js |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
Hi, the dropdown menu doesn't behave correctly with IE (I've tested it with version 7 and 8): I can see the entries, but when I click on the scrollbar the dropdown disappears.
Cheers, Giacomo
Attachments (0)
Change History (6)
comment:1 by , 15 years ago
Keywords: | anydiff iexplorer added |
---|---|
Milestone: | → 0.12.1 |
comment:2 by , 10 years ago
Milestone: | next-minor-0.12.x → next-stable-1.0.x |
---|
comment:3 by , 9 years ago
Keywords: | suggest.js added |
---|
comment:4 by , 9 years ago
Milestone: | next-stable-1.0.x |
---|---|
Resolution: | → wontfix |
Status: | new → closed |
comment:5 by , 9 years ago
For Internet Explorer, clicking scrollbar of suggestion list leads blur event of input field.
-
trac/htdocs/js/suggest.js
diff --git a/trac/htdocs/js/suggest.js b/trac/htdocs/js/suggest.js index 7559f6968..cba2468b9 100644
a b 54 54 } 55 55 }); 56 56 input.blur(function() { 57 if (timeout) clearTimeout(timeout); 58 timeout = setTimeout(hide, 200); 57 if (results && results[0] == document.activeElement) 58 input[0].focus(); 59 else { 60 if (timeout) clearTimeout(timeout); 61 timeout = setTimeout(hide, 200); 62 } 59 63 }); 60 64 61 65 function hide() { … … 71 75 72 76 function move(index) { 73 77 if (!results) return; 74 items = $("li", results);78 var items = $("li", results); 75 79 items.removeClass("selected"); 76 80 $(items[index]).addClass("selected"); 77 81 selectedIndex = index; … … 125 129 } 126 130 } 127 131 results.html(data).fadeTo("fast", 0.92); 128 items = $("li", results);132 var items = $("li", results); 129 133 items 130 134 .hover(function() { move(items.index(this)) }, 131 135 function() { $(this).removeClass("selected") })
comment:6 by , 9 years ago
It would probably be good to fix on 1.0-stable then since you have a patch. I just closed because it's 6 years old, and I figured the issue would never be addressed.
Note:
See TracTickets
for help on using tickets.
Closing as wontfix for 1.0-stable.
suggest.js
is replaced with jQuery-UI autocomplete for Trac 1.2 in #12169.