Non-clickable close button in webkit
Reported by: |
Chris <ctlajoie@…> |
Owned by: |
Chris <ctlajoie@…> |
Priority:
|
normal
|
Milestone:
|
0.11.7
|
Component:
|
version control/browser
|
Version:
|
0.11.6
|
Severity:
|
normal
|
Keywords:
|
|
Cc:
|
ctlajoie@…
|
Branch:
|
|
Release Notes:
|
|
API Changes:
|
|
Internal Changes:
|
|
When viewing a file with annotations if you click on a revision, the revision info comes up in a div, but in any webkit-based browser, the close button isn't clickable. Looks like you ran into this problem with Mozilla and already had a workaround for it. I just added safari to the list, and it seems to work in both Safari and Chrome.
-
|
|
|
77 | 77 | .append($('<div>').html(data || "<strong>(no changeset information)</strong>")) |
78 | 78 | .appendTo("body"); |
79 | 79 | |
80 | | // workaround non-clickable "Close" issue in Firefox |
81 | | if ($.browser.mozilla) |
| 80 | // workaround non-clickable "Close" issue in Firefox and Safari |
| 81 | if ($.browser.mozilla || $.browser.safari) |
82 | 82 | message.find("div.inlinebuttons").next().css("clear", "right"); |
83 | 83 | |
84 | 84 | show(); |
Change History
(3)
Milestone: |
→ 0.11.7
|
Resolution: |
→ fixed
|
Status: |
new → closed
|
Owner: |
set to Chris <ctlajoie@…>
|
Right, that was actually already fixed on trunk. Fix backported in [9029].