Add bulk download button for filesystem
This commit is contained in:
@@ -4,18 +4,15 @@ import { onMount } from "svelte"
|
||||
let ad_type = ""
|
||||
|
||||
onMount(() => {
|
||||
// 30% pixeldrain socials
|
||||
// 20% reviews
|
||||
// 10% ad block promo
|
||||
// 40% patreon
|
||||
// 40% pixeldrain socials
|
||||
// 10% reviews
|
||||
// 50% patreon
|
||||
|
||||
let rand = Math.random()
|
||||
if (rand < 0.3) {
|
||||
if (rand < 0.4) {
|
||||
ad_type = "socials"
|
||||
} else if (rand < 0.5) {
|
||||
ad_type = "reviews"
|
||||
} else if (rand < 0.6) {
|
||||
ad_type = "ad_block"
|
||||
} else {
|
||||
ad_type = "patreon_support"
|
||||
}
|
||||
|
@@ -637,8 +637,7 @@ const keyboard_event = evt => {
|
||||
.headerbar > * {
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
margin-left: 4px;
|
||||
margin-right: 4px;
|
||||
margin: 3px;
|
||||
}
|
||||
.headerbar > .file_viewer_headerbar_title {
|
||||
flex-grow: 1;
|
||||
|
Reference in New Issue
Block a user