mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
add albums from the same artist to album view
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
const scrollLeftX = (artists_dom) => {
|
||||
const dom = artists_dom.value;
|
||||
dom.scrollBy({
|
||||
left: -700,
|
||||
behavior: "smooth",
|
||||
});
|
||||
};
|
||||
|
||||
const scrollRightX = (artists_dom) => {
|
||||
const dom = artists_dom.value;
|
||||
dom.scrollBy({
|
||||
left: 700,
|
||||
behavior: "smooth",
|
||||
});
|
||||
};
|
||||
|
||||
export { scrollLeftX, scrollRightX, };
|
||||
Reference in New Issue
Block a user