YousableTubeFix

By Mindeye Last update Mar 25, 2013 — Installed 807,923 times.

new buttons

in
Subscribe to new buttons 7 posts, 6 voices



Zintos User
FirefoxWindows

what the heck why would you change them? they look so out of place now just a big black line

 
Mindeye Script's Author
FirefoxWindows

First, relax. I didn't change anything (I can only change things when the script is updated). YouTube changed the style of its buttons and the script needs an update to match it. That's all!

If you don't want to wait you can edit the script and replace...:

var dropButton = createNode("button", {"aria-pressed": false, class: YT_BUTTON_CLASS + " " + YT_BUTTON_TOOLTIP_CLASS + " " + YT_BUTTON_TOOLTIP_REVERSE_CLASS, "data-button-action": "", "data-button-menu-id": buttonMenuId, id: buttonId, role: "button", title: buttonTitle, type: "button"}, {disabled: !!buttonIsDisabled});
...with...:

var dropButton = createNode("button", {"aria-pressed": false, class: YT_BUTTON_CLASS + " yt-uix-button-default " + YT_BUTTON_TOOLTIP_CLASS + " " + YT_BUTTON_TOOLTIP_REVERSE_CLASS, "data-button-action": "", "data-button-menu-id": buttonMenuId, id: buttonId, role: "button", title: buttonTitle, type: "button"}, {disabled: !!buttonIsDisabled});
... and this line...:

var mainConfigureButton = createNode("button", {class: YT_BUTTON_CLASS + " " + YT_BUTTON_TOOLTIP_CLASS + " " + YT_BUTTON_TOOLTIP_REVERSE_CLASS, id: "ytf-main-configure-button", role: "button", title: "Configure YousableTubeFix", type: "button"}, {textContent: "Configure"},
...with...:
var mainConfigureButton = createNode("button", {class: YT_BUTTON_CLASS + " yt-uix-button-default " + YT_BUTTON_TOOLTIP_CLASS + " " + YT_BUTTON_TOOLTIP_REVERSE_CLASS, id: "ytf-main-configure-button", role: "button", title: "Configure YousableTubeFix", type: "button"}, {textContent: "Configure"},
This will be fixed in the next version of the script.

 
Zintos User
FirefoxWindows

Thanks for the fix, didn't mean to sound excited.

 
Zavvi User
FirefoxWindows

I was a little surprised when this happened myself, though I automatically assumed that something about Youtube had caused the script to go weird.

EDIT: Those edits seem to have fixed it, though for some reason the "Sort by thread (beta)" option isn't working.

 
Morten79 User
FirefoxWindows

Thanks for the quick fix. Works very fine :D
Btw. Zavvi Sort by thread (beta) not working seems too be an issue unaffected by this script. I hope google will fix it soon.

 
em7 User
FirefoxWindows

A sipler fix would be to alter the YT_BUTTON_CLASS variable from

var YT_BUTTON_CLASS = "yt-uix-button";
to
var YT_BUTTON_CLASS = "yt-uix-button yt-uix-button-default";

BTW, nice script man... makes youtube more bearable. ;)

 
VenomBHz User
FirefoxWindows

Thanks em7, worked like a charm!