mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 12:21:43 +00:00
Merge branch 'arreglar-scroll' into 'rails'
Arreglar scroll al reordenar posts See merge request sutty/sutty!96
This commit is contained in:
commit
75c4d3264d
1 changed files with 3 additions and 7 deletions
|
@ -103,11 +103,7 @@ export default class extends Controller {
|
|||
this.reorder()
|
||||
|
||||
// Mantenemos el primero a la vista
|
||||
if ("scrollIntoViewIfNeeded" in rows[0].row) {
|
||||
rows[0].row.scrollIntoViewIfNeeded()
|
||||
} else {
|
||||
rows[0].row.scrollIntoView()
|
||||
}
|
||||
rows[0].row.scrollIntoView({ block: "center" });
|
||||
}
|
||||
|
||||
counter () {
|
||||
|
@ -146,7 +142,7 @@ export default class extends Controller {
|
|||
this.reorder()
|
||||
|
||||
// Mantenemos el primero a la vista
|
||||
rows[0].row.scrollIntoViewIfNeeded()
|
||||
rows[0].row.scrollIntoView({ block: "center" });
|
||||
}
|
||||
|
||||
bottom (event) {
|
||||
|
@ -167,7 +163,7 @@ export default class extends Controller {
|
|||
this.reorder()
|
||||
|
||||
// Mantenemos el primero a la vista
|
||||
rows[0].row.scrollIntoViewIfNeeded()
|
||||
rows[0].row.scrollIntoView({ block: "center" });
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue