2020-10-19 11:43:33 +00:00
|
|
|
import {ElemJS} from "./basic.js"
|
2020-10-19 05:37:17 +00:00
|
|
|
|
|
|
|
class Anchor extends ElemJS {
|
2020-10-19 11:43:33 +00:00
|
|
|
constructor() {
|
|
|
|
super("div")
|
|
|
|
this.class("c-anchor")
|
|
|
|
}
|
2020-10-19 05:37:17 +00:00
|
|
|
|
2020-10-19 11:43:33 +00:00
|
|
|
scroll() {
|
|
|
|
// console.log("anchor scrolled")
|
|
|
|
this.element.scrollIntoView({block: "start"})
|
|
|
|
}
|
2020-10-19 05:37:17 +00:00
|
|
|
}
|
|
|
|
|
2020-10-19 11:43:33 +00:00
|
|
|
export {Anchor}
|