Results 16 comments of hacknlove

You can create a component that you can import and use dynamically The component: ```js import { ClientJS } from 'clientjs' import { useEffect } from 'react'; export default function...

I don't need this anymore. I close it to clean my open PRs list.

It seems to be related with this: https://github.com/browserify/static-eval/pull/37

You can do the following: 1. go to https://packages.ubuntu.com 2. search those packages 3. download the version for your architecture 4. Install them 5. run `npx playwright install-deps` again It...

I am having the same issue Have you managed to solve it?

This is working for me ```js fetchMock.mockResponse(() => Promise.resolve({ body: JSON.stringify({ ok: true }), headers: [ ['set-cookie', 'some cookie'], ['set-cookie', 'more cookies'] ] })); ```

I see in the new version source code (0.4.0) that you can add a callback, but it seems that `persistentCollection.refresh(true, callback)` you have also `new PersistentMinimongo2(colection, name, callback)` Update your...

I would love this feature too. I just have added a new strategy to the textcomplete, to insert usernames when user inserts a `@` like here in github for instance....

> This bug is really annoying. Could anyone solve it? > > I love this project, but is useless on most mobile websites that i use it. The emojionearea can't...

try this with "top" positioning ``` events: { 'picker.show' (picker) { if (picker.offset().top < 0) { picker.css('top', picker.position().top - picker.offset().top) picker.css('position', 'absolute') } }, 'picker.hide' (picker) { console.log('hide') picker.css('top', '')...