new buttons
![]() ![]() |
what the heck why would you change them? they look so out of place now just a big black line |
![]() ![]() |
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. |
![]() ![]() |
Thanks for the fix, didn't mean to sound excited. |
![]() ![]() |
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. |
![]() ![]() |
Thanks for the quick fix. Works very fine :D
|
![]() ![]() |
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. ;) |
![]() ![]() |
Thanks em7, worked like a charm! |

