mirror of
https://github.com/iv-org/invidious.git
synced 2025-05-06 00:15:06 -04:00
Add compilations to feeds menu
This commit is contained in:
parent
ea48239543
commit
7cfa09984e
9 changed files with 28 additions and 12 deletions
|
@ -60,12 +60,21 @@
|
|||
document.querySelectorAll('[data-onclick="add_playlist_video"]').forEach(function (el) {
|
||||
el.onclick = function () { add_playlist_video(el); };
|
||||
});
|
||||
document.querySelectorAll('[data-onclick="add_compilation_video"]').forEach(function (el) {
|
||||
el.onclick = function () { add_compilation_video(el); };
|
||||
});
|
||||
document.querySelectorAll('[data-onclick="add_playlist_item"]').forEach(function (el) {
|
||||
el.onclick = function () { add_playlist_item(el); };
|
||||
});
|
||||
document.querySelectorAll('[data-onclick="add_compilation_item"]').forEach(function (el) {
|
||||
el.onclick = function () { add_compilation_item(el); };
|
||||
});
|
||||
document.querySelectorAll('[data-onclick="remove_playlist_item"]').forEach(function (el) {
|
||||
el.onclick = function () { remove_playlist_item(el); };
|
||||
});
|
||||
document.querySelectorAll('[data-onclick="remove_compilation_item"]').forEach(function (el) {
|
||||
el.onclick = function () { remove_compilation_item(el); };
|
||||
});
|
||||
document.querySelectorAll('[data-onclick="revoke_token"]').forEach(function (el) {
|
||||
el.onclick = function () { revoke_token(el); };
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue