Marius A

Results 171 comments of Marius A

> BTW one workaround for not showing widget as offline is to configure business hours. Right, but that's always changing with small business. Agent (co-founder of business) could keep a...

Hi, The desired behavior would be If there's no agent online, hide the widget bubble. (regardless of business hours; user = support agent)

Hm, that means maintaining a separate almost duplicate layout only for the page(s) which need a TOC. I come from jekyll, where one can say in a markdown content page...

> could you help me understand how using a layout template is a drawback here? Example: a site with regular HTML pages, but also some .md pages (FAQ). Both use...

+1. Our use case: a fiscal receipt printer has it's own app installed on a computer. The fiscal printer app monitors a folder for new files created and prints receipts...

At least writing is actually possible now. With Chrome 85 (dev channel) : ``` dhandle = await window.showDirectoryPicker() dhandle.requestPermission({ writable: true }) //write as many files as needed: let fhandle...

> In the future we hope to auto-grant such re-requested permissions for for example installed PWAs (i.e. you'd still need to re-request permission on reload, but there wouldn't be always...

Another question, please: > To get a writable directory handle indeed just call showDirectoryPicker followed by requestPermission (and when we fix #89 we'll be able to change that to just...

Is there any other way to persist dhandle, besides indexedDb? localstorage doesn't work, as it needs strings and `JSON.stringify(dhandle)` returns `{}` with indexedDb, `await window.showDirectoryPicker` auto-closes the transaction and can't...

This works for me: ``` import vue2Dropzone from 'vue2-dropzone' import 'vue2-dropzone/dist/vue2Dropzone.min.css' export default { ... } function renameFile (file) { l("renameFile", file) return "something." + file.name.toLowerCase().split('.').pop() } ``` However, we...