diff --git a/src/waypoint.ts b/src/waypoint.ts index 463030a..77fdb68 100644 --- a/src/waypoint.ts +++ b/src/waypoint.ts @@ -359,17 +359,31 @@ function generateHighlightedNumberSvgDataUrl(number: number): string { function generateHeightAdjustButtonSvgDataUrl(): string { const svg = ` - - - - - + + + + + + + + + + + + + + + + + + + + + ` - const encoded = encodeURIComponent(svg) .replace(/'/g, '%27') .replace(/"/g, '%22') - return `data:image/svg+xml,${encoded}` }