Closed
Bug 888575
Opened 13 years ago
Closed 13 years ago
Links get outlined after clicking
Categories
(Marketplace Graveyard :: Consumer Pages, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: dron.rathore, Unassigned)
Details
User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:22.0) Gecko/20100101 Firefox/22.0 (Beta/Release)
Build ID: 20130620123127
Steps to reproduce:
Step 1: Click on any app on the front page or on the fireplace logo on the header.
Actual results:
The link get outlined(by default behavior of mozilla for links that do not loads a whole new page), looks quite weired. :p
Expected results:
The links after clicking should remain clean and should not show that outline.
| Reporter | ||
Updated•13 years ago
|
Component: General → Consumer Pages
| Reporter | ||
Updated•13 years ago
|
Severity: normal → trivial
| Reporter | ||
Comment 1•13 years ago
|
||
We can add this to resolve:
z.body.on("click", function(e){
if (e.target.nodeName == "A") {
e.target.blur();
}
});
Comment 2•13 years ago
|
||
This is how the web works. The outline serves accessibility purposes as well as functional ones.
Status: UNCONFIRMED → RESOLVED
Closed: 13 years ago
Resolution: --- → WONTFIX
| Reporter | ||
Comment 3•13 years ago
|
||
Then how about doing it in more better way, say heartbeat animation. Whenever an app is clicked, it starts beating(opacity:0 to 1, back and fro)
You need to log in
before you can comment on or make changes to this bug.
Description
•