Like/Dislike percentage removed?

  • 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.

This started about 7 or 8 days ago.

4 Likes

Wow, i never knew this used to be a feature!

1 Like

Pretty sure it never was. No idea what OP is referring to

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

Screenshot_1

2 Likes

Exactly like that yes, was definitely a feature @Sharksie

This was a thing and Im sad too that this feature got removed

wait this probably was an R+ thing, sometimes I forget I even have it

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.

I’ve been missing this too, but I’m pretty sure its R+ functionality

1 Like

If anyone wants to restore this functionality with a simple script, the information is still there:

image

You should be able to set the title attribute to style.width and get the same functionality that way.

The reason I made it a bug report is because there was a feature but it has stopped working - wouldn’t that be classed as a bug? :slight_smile:

Oh, so I think that would imply it is a roblox feature and not R+? :thinking:

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.

I used this all the time, definitely a thing.

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.)

1 Like

It seems to be fixed now! :smiley:

image

I still don’t see this (and don’t remember ever seeing this anyway?).

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.