Describe the bug. Describe what is happening when the bug occurs. Describe what you would normally expect to occur.
I don’t know if this is a bug or intentional but when you hover over the like/dislike it used to show a percentage which it now doesn’t.
How often does the bug happen (Everytime/sometimes/rarely)? What are the steps that reproduce the bug? Please list them in very high detail. Provide simple example places that exhibit the bug and provide description of what you believe should be the behavior.
This happens everytime on any game. To reproduce the bug, hover over the like/dislike bar and no percentage shows!
Where does the bug happen (www, gametest, etc) Is it level-specific? Is it game specific? Please post a link to the place that exhibits the issue.
Any game on the live website.
When did the bug start happening? If we can tie it to a specific release that helps us figure out what we broke.
No it was, if you put your mouse on the like/dislike bar on the game’s page, it would show a small tip displaying the actual percent, as (crudely) illustrated in the picture below
I’ve never seen this myself and I’m sure I’ve tried. Are you sure this was a stock feature and not a browser plugin?
Either way, lack of a feature is typically not the same as a bug, you might want to move this to Feature Requests and adjust the title/body to fit that category.
Unless you’re sure the functionality is broken (i.e. there are errors in console about it) or it is documented somewhere that it should work this way, I’d go for feature request.
Referring to what @Corecii said, here’s some bad code that puts this back:
var vps = document.getElementsByClassName("vote-percentage");
for (var i = 0; i < vps.length; i++) {
vps[i].title = vps[i].style.width;
}
Now all you have to do is go through the painful process of wrapping that up as a Chrome plugin and deploying it. (If you actually do this, make sure the code runs after the DOM loads.)