Better mobile view
This commit is contained in:
parent
1d75aa8c3e
commit
3bd0819cbc
4 changed files with 141 additions and 25 deletions
15
static/js/page_history.mjs
Normal file
15
static/js/page_history.mjs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { CustomHTMLElement } from './lib/custom_html_element.mjs'
|
||||
|
||||
export class N2PageHistory extends CustomHTMLElement {
|
||||
static {
|
||||
this.tmpl = document.createElement('template')
|
||||
this.tmpl.innerHTML = `
|
||||
<div>History</div>
|
||||
`
|
||||
}
|
||||
|
||||
constructor() {
|
||||
super()
|
||||
}
|
||||
}
|
||||
customElements.define('n2-pagehistory', N2PageHistory)
|
||||
Loading…
Add table
Add a link
Reference in a new issue