forked from cybrespace/pinafore
remove dead code
This commit is contained in:
parent
7682015cda
commit
21a2b4251e
|
@ -1,13 +1,10 @@
|
||||||
import { Store } from 'svelte/store.js'
|
import { Store } from 'svelte/store.js'
|
||||||
import { splice } from 'svelte-extras'
|
|
||||||
|
|
||||||
const RENDER_BUFFER = 1000
|
const RENDER_BUFFER = 1000
|
||||||
|
|
||||||
class VirtualListStore extends Store {
|
class VirtualListStore extends Store {
|
||||||
}
|
}
|
||||||
|
|
||||||
VirtualListStore.prototype.splice = splice
|
|
||||||
|
|
||||||
const virtualListStore = new VirtualListStore({
|
const virtualListStore = new VirtualListStore({
|
||||||
items: [],
|
items: [],
|
||||||
itemHeights: {},
|
itemHeights: {},
|
||||||
|
|
Loading…
Reference in New Issue