fix(view): fix code styles

This commit is contained in:
ppoffice 2022-09-11 22:48:25 -04:00
parent 199a9d1c05
commit 3456f8fd20
No known key found for this signature in database
GPG Key ID: D872802C1F2A16AA
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
(function () {
(function() {
function $() {
return Array.prototype.slice.call(document.querySelectorAll.apply(document, arguments));
}
@ -11,7 +11,7 @@
[
'.column-main > .card, .column-main > .pagination, .column-main > .post-navigation',
'.column-left > .card, .column-right-shadow > .card',
'.column-right > .card',
'.column-right > .card'
].forEach(selector => {
$(selector).forEach(element => {
element.style.transition = '0s';
@ -37,7 +37,7 @@
[
'.column-main > .card, .column-main > .pagination, .column-main > .post-navigation',
'.column-left > .card, .column-right-shadow > .card',
'.column-right > .card',
'.column-right > .card'
].forEach(selector => {
$(selector).forEach(element => {
setTimeout(() => {
@ -56,4 +56,4 @@
}, i * 100);
}
});
})();
}());