Add javascript marquee effect for overflowing text on card badge names
This commit is contained in:
parent
262f0ea190
commit
e37731b74d
7 changed files with 47 additions and 48 deletions
|
|
@ -13,7 +13,10 @@
|
|||
url.search = params.toString();
|
||||
fetch(url, { headers: { 'X-Requested-With': 'XMLHttpRequest' }})
|
||||
.then(response => response.text())
|
||||
.then(html => { this.$refs.offersContainer.innerHTML = html; });
|
||||
.then(html => {
|
||||
this.$refs.offersContainer.innerHTML = html;
|
||||
window.processMarqueeElements && window.processMarqueeElements();
|
||||
});
|
||||
}
|
||||
}"
|
||||
x-on:change-page.window="page = $event.detail.page; loadOffers()">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue