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