Fix RES expando replacing
This commit is contained in:
parent
5b5f1bed27
commit
8dc3589f02
|
@ -1,16 +1,19 @@
|
|||
// replace RES expando icons with reddit ones
|
||||
(function() {
|
||||
$("a.expando-button").each((i, el) => {
|
||||
el = $(el);
|
||||
if (!el.hasClass("selftext") && !el.hasClass("video")) {
|
||||
el.addClass("video");
|
||||
el.click(() => {
|
||||
if (el.hasClass("expanded")) {
|
||||
function fixExpandos() {
|
||||
$("a.expando-button").each((i, el) => {
|
||||
el = $(el);
|
||||
if (!el.hasClass("selftext") && !el.hasClass("video")) {
|
||||
el.removeClass("image");
|
||||
el.removeClass("gallery");
|
||||
el.addClass("video");
|
||||
el.click(() => {
|
||||
el.removeClass("image");
|
||||
el.removeClass("gallery");
|
||||
el.addClass("video");
|
||||
} else {
|
||||
el.addClass("video");
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
setTimeout(fixExpandos, 50);
|
||||
})();
|
||||
|
|
Loading…
Reference in New Issue